-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
57 lines (57 loc) · 1.25 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
{
"author": {
"name": "Pascal Belloncle",
"url": "http://jsdox.org"
},
"maintainers": [
{
"name": "Marc Trudel",
"email": "[email protected]",
"web": "http://www.wizcorp.jp"
}
],
"license": "MIT",
"name": "jsdox",
"description": "Simple JSDoc 3 to Markdown generator",
"version": "0.4.10",
"repository": {
"type": "git",
"url": "git://github.com/sutoiku/jsdox.git"
},
"main": "./jsdox.js",
"files": [
"bin/jsdox",
"jsdox.js",
"LICENSE",
"README.md",
"templates",
"lib"
],
"scripts": {
"lint": "node_modules/.bin/jscs jsdox.js lib test && node_modules/.bin/jshint --config .jshintrc jsdox.js lib/* bin/* test/* fixtures/*",
"test": "npm run lint && node_modules/.bin/mocha;"
},
"preferGlobal": true,
"bin": {
"jsdox": "./bin/jsdox"
},
"dependencies": {
"jsdoc3-parser": "^1.0.3",
"mustache": "^0.8.2",
"optimist": "~0.3.4",
"q": "^1.0.1"
},
"devDependencies": {
"expect.js": "^0.3.1",
"jscs": "^1.6.1",
"jshint": "^2.5.3",
"mocha": "^1.21.4",
"sinon": "^1.10.3"
},
"optionalDependencies": {},
"engines": {
"node": ">=0.8.4"
},
"homepage": "http://jsdox.org",
"bugs": "https://github.com/sutoiku/jsdox/issues"
}