forked from pzuraq/esdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.87 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
{
"name": "esdoc",
"version": "1.0.0-alpha.7",
"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"
},
"publishConfig": {
"tag": "alpha"
},
"scripts": {
"build": "node ./script/build.js",
"test": "node ./script/test.js",
"test-ci": "node ./script/test-ci.js",
"esdoc": "node ./script/esdoc.js",
"site": "node ./script/site.js",
"start": "node ./script/server.js",
"lint": "node ./script/eslint.js"
},
"dependencies": {
"cheerio": "0.22.0",
"color-logger": "0.0.3",
"escape-html": "1.0.3",
"babylon": "6.14.1",
"babel-generator": "6.11.4",
"babel-traverse": "6.12.0",
"fs-extra": "1.0.0",
"ice-cap": "0.0.4",
"marked": "0.3.6",
"minimist": "1.2.0",
"taffydb": "2.7.2"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-plugin-transform-es2015-modules-commonjs": "6.11.5",
"babel-register": "6.11.6",
"codecov": "1.0.1",
"esdoc-importpath-plugin": "0.1.0",
"eslint": "3.6.0",
"http-server": "0.9.0",
"nyc": "8.3.0",
"babel-plugin-istanbul": "2.0.1",
"mocha": "2.5.3",
"esdoc-accessor-plugin": "latest",
"esdoc-external-ecmascript-plugin": "latest",
"esdoc-undocumented-identifier-plugin": "latest"
},
"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"
}
}