-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.24 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-sphinx",
"version": "0.0.6",
"description": "A JSDoc3 template which output ReStructured Text for Sphinx Doc",
"main": "/template/publish.js",
"scripts": {
"test": "eslint . && nodeunit"
},
"repository": {
"type": "git",
"url": "[email protected]:HumanBrainProject/jsdoc-sphinx.git"
},
"keywords": [
"jsdoc",
"jsdoc3",
"template",
"rst",
"restructuredtext",
"sphinx",
"javascript",
"documentation",
"generator"
],
"author": "Olivier Amblet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/HumanBrainProject/jsdoc-sphinx/issues"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": "eslint:recommended",
"rules": {
"valid-jsdoc": 2,
"semi": 2
}
},
"homepage": "https://github.com/HumanBrainProject/jsdoc-sphinx",
"peerDependencies": {
"jsdoc": "^3.3.3"
},
"devDependencies": {
"eslint": "^2",
"eslint-config-google": "^0.5.0",
"jsdoc": "^3.3.3"
},
"dependencies": {
"async": "^1.5.0",
"canonical-path": "0.0.2",
"deasync": "^0.1.3",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"mustache": "^2.2.0",
"sync": "^0.2.5"
}
}