forked from esdoc/esdoc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "esdoc",
"version": "0.5.0-alpha",
"description": "Documentation Generator For JavaScript(ES6)",
"author": "h13i32maru",
"homepage": "https://esdoc.org/",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/typhonjs-node-esdoc/esdoc.git"
},
"maintainers": [
{
"name": "Mike Leahy",
"email": "[email protected]",
"url": "https://github.com/typhonrt"
}
],
"scripts": {
"build": "babel-node ./node_modules/typhonjs-npm-scripts-build-babel/scripts/build.js",
"esdoc": "babel-node ./src/ESDocCLI.js -c .esdocrc",
"test": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha.js",
"test-coverage": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha-istanbul.js"
},
"dependencies": {
"babel-generator": "^6.0.0",
"babel-polyfill": "^6.0.0",
"babylon": "^6.0.0",
"cheerio": "^0.20.0",
"color-logger": "^0.0.6",
"escape-html": "^1.0.0",
"fs-extra": "^0.30.0",
"ice-cap": "^0.0.4",
"marked": "^0.3.0",
"minimist": "^1.0.0",
"taffydb": "^2.0.0",
"typhonjs-ast-walker": "^0.1.0"
},
"devDependencies": {
"typhonjs-npm-build-test": "^0.3.0"
},
"keywords": [
"jsdoc",
"api",
"document",
"ES6",
"ES2015",
"ECMAScript6",
"ECMAScript2015"
],
"files": [
"out/src",
"src"
],
"main": "out/src/ESDoc.js",
"bin": {
"esdoc": "out/src/ESDocCLI.js"
}
}