forked from esdoc/esdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.79 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "esdoc",
"version": "1.1.0",
"description": "Good Documentation Generator For JavaScript",
"author": {
"name": "h13i32maru",
"url": "https://h13i32maru.jp"
},
"homepage": "https://esdoc.org/",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/esdoc/esdoc"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"build": "node ./script/build.js",
"test": "node ./script/test.js",
"test-ci": "node ./script/test-ci.js",
"esdoc": "node ./script/esdoc.js",
"lint": "node ./script/eslint.js"
},
"dependencies": {
"cheerio": "1.0.0-rc.2",
"color-logger": "0.0.6",
"escape-html": "1.0.3",
"babylon": "6.18.0",
"babel-generator": "6.26.1",
"babel-traverse": "6.26.0",
"fs-extra": "5.0.0",
"ice-cap": "0.0.4",
"marked": "0.3.19",
"minimist": "1.2.0",
"taffydb": "2.7.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-istanbul": "4.1.6",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-register": "6.26.0",
"codecov": "3.0.1",
"esdoc-accessor-plugin": "latest",
"esdoc-external-ecmascript-plugin": "latest",
"esdoc-importpath-plugin": "^1.0.1",
"esdoc-standard-plugin": "latest",
"esdoc-undocumented-identifier-plugin": "latest",
"eslint": "4.19.1",
"mocha": "5.1.1",
"nyc": "11.7.1"
},
"keywords": [
"jsdoc",
"api",
"document",
"documentation",
"ES6",
"ECMAScript6",
"ES2015",
"ECMAScript2015",
"ES7",
"ECMAScript7",
"ES2016",
"ECMAScript2016",
"ES8",
"ECMAScript8",
"ES2017",
"ECMAScript2017",
"proposal"
],
"files": [
"out/src",
"README.md"
],
"main": "out/src/ESDoc.js",
"bin": {
"esdoc": "out/src/ESDocCLI.js"
}
}