-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "jscs-jsdoc",
"author": "Alexej Yaroshevich <[email protected]>",
"description": "JSCS jsdoc plugin",
"version": "2.0.0",
"main": "lib/index",
"homepage": "https://github.com/jscs-dev/jscs-jsdoc",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jscs-dev/jscs-jsdoc"
},
"bugs": {
"url": "https://github.com/jscs-dev/jscs-jsdoc/issues"
},
"contributors": [
"Alexej Yaroshevich <[email protected]>",
"Henry Zhu <[email protected]>",
"Christopher Hiller <[email protected]>",
"Raphael Pigulla <[email protected]>"
],
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"comment-parser": "^0.3.1",
"jsdoctypeparser": "~1.2.0"
},
"devDependencies": {
"chai": "^2.3.0",
"chai-subset": "^1.1.0",
"jscs": "git://github.com/jscs-dev/node-jscs.git#master",
"jshint": "^2.7.0",
"mocha": "^2.2.4"
},
"scripts": {
"lint": "jshint lib test && jscs lib test",
"test": "npm run lint && mocha",
"browserify": "browserify --standalone JsdocJscsPlugin lib/index.js -o jscs-jsdoc-browser.js",
"changelog": "changelog-maker jscs-dev jscs-jsdoc --group"
},
"files": [
"lib",
"LICENSE"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jscs-dev/jscs-jsdoc/raw/master/LICENSE"
}
]
}