forked from apidoc/apidoc-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.47 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
59
60
61
62
63
64
65
66
67
68
{
"name": "apidoc-core",
"version": "0.8.2",
"description": "Core parser library to generate apidoc result following the apidoc-spec",
"author": "Peter Rottmann <[email protected]>",
"license": "MIT",
"main": "./lib/index.js",
"homepage": "https://github.com/apidoc/apidoc-core",
"repository": {
"type": "git",
"url": "https://github.com/apidoc/apidoc-core.git"
},
"bugs": {
"url": "https://github.com/apidoc/apidoc-core/issues"
},
"scripts": {
"test": "npm run jshint && mocha test/**/*_test.js",
"jshint": "jshint lib/ test/",
"check-updates": "npm-check-updates"
},
"keywords": [
"api",
"apidoc",
"doc",
"documentation",
"rest",
"restful"
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"fs-extra": "^2.0.0",
"glob": "^7.1.1",
"iconv-lite": "^0.4.15",
"klaw-sync": "^1.0.2",
"lodash": "~4.17.4",
"semver": "~5.3.0",
"node-html-encoder": "^0.0.2"
},
"devDependencies": {
"apidoc-example": "*",
"jshint": "~2.9.4",
"markdown-it": "^8.2.2",
"mocha": "~3.2.0",
"npm-check-updates": "^2.8.9",
"should": "~11.1.2"
},
"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"
]
}
}