-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.16 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
{
"name": "ndoc",
"version": "6.0.1",
"description": "JavaScript API documentor with simple syntax.",
"keywords": [
"api",
"doc",
"apidoc",
"documentation",
"pdoc"
],
"contributors": [
"Vitaly Puzrin <[email protected]> (http://rcdesign.ru)",
"Aleksey V Zapparov <[email protected]> (http://www.ixti.net/)",
"Vitaly Miniahmetov <[email protected]>",
"Vladimir Dronnikov <[email protected]>"
],
"license": "MIT",
"repository": "nodeca/ndoc",
"files": [
"lib/",
"bin/",
"index.js"
],
"bin": {
"ndoc": "bin/ndoc.js"
},
"scripts": {
"test": "make test",
"doc": "node support/build_doc.js",
"gh-pages": "npm run doc && gh-pages -d doc -f",
"prepublishOnly": "npm run gh-pages"
},
"dependencies": {
"argparse": "^2.0.1",
"glob": "^10.3.10",
"highlight.js": "^11.9.0",
"jquery": "^3.7.1",
"lodash": "^4.17.21",
"markdown-it": "^14.0.0",
"mkdirp": "^3.0.1",
"pug": "^3.0.2",
"resolve": "^1.22.8",
"stylus": "^0.62.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"gh-pages": "^6.1.1",
"pegjs": "~0.10.0",
"shelljs": "^0.8.4"
}
}