-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.42 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": "apidoc-plugin-test",
"version": "1.0.0",
"description": "Only a test and example plugin. It demonstrates the usage of the apidoc hook system.",
"author": "Peter Rottmann <[email protected]>",
"license": {
"type": "MIT",
"url": "https://github.com/apidoc/apidoc/blob/master/LICENSE"
},
"main": "index.js",
"homepage": "http://apidocjs.com",
"repository": {
"type": "git",
"url": "https://github.com/apidoc/apidoc-plugin-test.git"
},
"scripts": {
"test": "npm run jshint && mocha test/",
"jshint": "jshint",
"build-example": "cd .. && apidoc-plugin-test/node_modules/apidoc/bin/apidoc -i apidoc-plugin-test/test/src/ -o apidoc-plugin-test/tmp/ --debug --verbose && cd apidoc-plugin-test",
"check-updates": "npm-check-updates"
},
"keywords": [
"apidoc",
"plugin",
"apidoc-plugin"
],
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"apidoc": "*",
"apidoc-core": "~0.7.0",
"fs-extra": "^0.28.0",
"jshint": "^2.9.2",
"mocha": "^2.4.5",
"npm-check-updates": "^2.6.3",
"should": "^8.3.1"
},
"jshintConfig": {
"camelcase": true,
"curly": false,
"eqeqeq": true,
"forin": true,
"latedef": false,
"newcap": true,
"undef": true,
"unused": true,
"trailing": true,
"node": true,
"browser": true,
"predef": [
"it",
"describe",
"before",
"after"
]
}
}