-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.89 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
63
64
65
66
67
68
{
"name": "evaldown",
"version": "2.0.0",
"description": "Evalute JavaScript snippets in markdown files and output static pages.",
"main": "lib/Evaldown.js",
"bin": {
"evaldown": "./bin/evaldown"
},
"files": [
"bin",
"lib"
],
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text mocha",
"docs": "./bin/evaldown --format markdown ./docs/README.md > README.md",
"lint": "eslint . && prettier --check '**/*.js'",
"test": "mocha",
"test-docs": "./bin/evaldown --validate --reporter spec ./docs/README.md",
"version": "npm run docs && git add README.md && offline-github-changelog --next=${npm_package_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"keywords": [
"markdown",
"documentation",
"evaluate",
"generator",
"typescript",
"unexpected"
],
"author": "Alex J Burke <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/alexjeffburke/evaldown.git"
},
"license": "MIT",
"devDependencies": {
"buble": "^0.20.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jsdom": "^16.3.0",
"nyc": "^15.0.0",
"offline-github-changelog": "^3.0.1",
"prettier": "^1.19.1",
"sinon": "^9.0.1",
"typescript": "^3.8.3",
"unexpected-sinon": "^11.0.0",
"unexpected-snapshot": "^2.1.0"
},
"dependencies": {
"acorn": "^7.1.1",
"acorn-walk": "^7.1.1",
"createerror": "^1.3.0",
"debug": "^4.1.1",
"fast-glob": "^3.2.2",
"find-up": "^4.1.0",
"fs-extra": "^9.0.0",
"magicpen-prism": "^5.0.0",
"marked": "^4.3.0",
"mocha": "^10.2.0",
"unexpected": "^13.1.0",
"yargs": "^17.7.2"
}
}