-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "evalmd",
"version": "0.0.19",
"description": "Evaluates javascript code blocks from markdown files.",
"main": "dist/script.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/reggi/evalmd"
},
"bugs": {
"url": "https://github.com/reggi/evalmd/issues"
},
"keywords": [
"eval",
"evaulate",
"javascript",
"markdown",
"test"
],
"preferglobal": true,
"author": "Thomas Reggi <[email protected]>",
"dependencies": {
"acorn": "^7.1.0",
"bluebird": "^2.9.34",
"chalk": "^1.1.3",
"es-lookup-scope": "^1.0.1",
"estraverse": "^4.3.0",
"fs-extra": "reggi/node-fs-extra#enhanced",
"lodash": "^4.17.15",
"markdown-it": "^5.1.0",
"object.assign": "^4.1.0",
"object.entries": "^1.1.1",
"object.values": "^1.1.1",
"os-tmpdir": "^1.0.2",
"yargs": "^3.32.0"
},
"devDependencies": {
"@types/node": "^13.7.0",
"aud": "^1.0.0",
"qs": "^6.9.1",
"qs-iconv": "^1.0.4",
"ts-node": "^7.0.1",
"typescript": "^3.7.5"
},
"bin": {
"evalmd": "./dist/script.js",
"test-markdown": "./dist/script.js",
"eval-markdown": "./dist/script.js"
},
"scripts": {
"build": "tsc",
"tests-only": "npm run test-node && npm run test-tsnode",
"test": "npm run tests-only",
"posttest": "aud",
"test-node": "node ./dist/script.js ./test-readmes/qs.md",
"test-tsnode": "ts-node ./src/script.ts ./test-readmes/qs.md"
},
"engines": {
"node": ">= 4.2"
}
}