forked from esdoc2/esdoc2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.6 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "esdoc2",
"version": "2.1.5",
"description": "Better Documentation Generator For JavaScript",
"contributors": [
{
"name": "Conrad Buck",
"email": "conartist6@gmail.com",
"url": "https://burningpotato.com"
},
{
"name": "Matt McFarland",
"email": "contact@mattmcfarland.com",
"url": "http://esdoc2.org"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/esdoc2/esdoc2"
},
"engines": {
"node": ">= 6",
"yarn": ">= 1"
},
"scripts": {
"build": "yarn build:package && yarn build:docs",
"build:package": "scripts/build-package.js",
"build:docs": "scripts/build-docs.js",
"test": "scripts/test.js $(find test/ -regex '.*.test.js$')",
"test:ci": "nyc scripts/test.js $(find test/ -regex '.*.test.js$')",
"lint": "scripts/lint.js",
"lint:es": "eslint ./src ./test/src",
"lint:es:ci": "eslint ./src ./test/src --format junit --output-file ~/reports/eslint.xml",
"lint:json": "jsonlint ./package.json",
"lint:yaml": "js-yaml ./circle.yml",
"deploy-docs": "scripts/deploy-ghpages.sh",
"prepublishOnly": "yarn build"
},
"precommit": [
"lint",
"test"
],
"dependencies": {
"babel-generator": "~6.26.0",
"babel-traverse": "~6.26.0",
"babylon": "~6.18.0",
"big-json": "~1.2.0",
"cheerio": "~1.0.0-rc.2",
"color-logger": "~0.0.6",
"escape-html": "~1.0.3",
"fs-extra": "~4.0.2",
"ice-cap": "~0.0.4",
"marked": "~0.3.9",
"minimist": "~1.2.0",
"mkdirp": "~0.5.1",
"npmlog": "~4.1.2",
"taffydb": "~2.7.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-istanbul": "4.1.5",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "6.26.0",
"codecov": "3.0.0",
"debug": "^3.1.0",
"esdoc2-accessor-plugin": "2.0.0",
"esdoc2-external-ecmascript-plugin": "2.0.0",
"esdoc2-importpath-plugin": "2.0.0",
"esdoc2-standard-plugin": "2.0.0",
"esdoc2-undocumented-identifier-plugin": "2.0.0",
"eslint": "4.11.0",
"js-yaml": "^3.10.0",
"jsonlint": "^1.6.2",
"mocha": "4.0.1",
"mocha-junit-reporter": "^1.15.0",
"node-static": "^0.7.10",
"nyc": "11.3.0",
"pre-commit": "^1.2.2"
},
"keywords": [
"jsdoc",
"esdoc2",
"api",
"document",
"documentation",
"ES6"
],
"files": [
"out/src",
"manual",
"README.md"
],
"directories": {
"doc": "manual",
"lib": "src"
},
"main": "out/src/esdoc2.js",
"bin": {
"esdoc2": "out/src/ESDocCLI.js"
}
}