forked from jsdoc2md/jsdoc-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "jsdoc-api",
"author": "Lloyd Brookes <[email protected]>",
"version": "1.1.0",
"description": "A programmatic interface for jsdoc",
"repository": "https://github.com/jsdoc2md/jsdoc-api.git",
"license": "MIT",
"main": "index",
"keywords": [
"jsdoc",
"api",
"programmatic",
"interface",
"javascript",
"documentation"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "tape test/*.js",
"docs": "jsdoc2md -t jsdoc2md/README.hbs lib/*.js > README.md; echo",
"es5": "babel --presets babel-preset-es2015 --no-comments lib --out-dir es5",
"cover": "istanbul cover ./node_modules/.bin/tape test/*.js && cat coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf coverage; echo"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"blue-tape": "^0.2.0",
"collect-json": "^1.0.8",
"coveralls": "^2.11.9",
"jsdoc-to-markdown": "^1.3.6",
"rimraf": "^2.5.2",
"tape": "^4.5.1"
},
"dependencies": {
"array-back": "^1.0.3",
"collect-all": "^1.0.2",
"command-line-args": "^2.1.6",
"core-js": "^2.4.0",
"debug": "^2.2.0",
"feature-detect-es6": "^1.2.0",
"file-set": "^1.0.0",
"home-path": "^1.0.3",
"jsdoc-75lb": "^3.5",
"object-to-spawn-args": "^1",
"promise.prototype.finally": "^1.0.1",
"temp-path": "^1.0.0",
"then-fs": "^2.0.0",
"walk-back": "^1.1.1"
},
"standard": {
"ignore": [
"es5",
"tmp",
"test/fixture"
]
}
}