-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.37 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
{
"name": "apidoc-core",
"version": "0.11.1",
"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/"
},
"keywords": [
"api",
"apidoc",
"doc",
"documentation",
"rest",
"restful"
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"iconv-lite": "^0.5.0",
"klaw-sync": "^6.0.0",
"lodash": "~4.17.15",
"semver": "~6.3.0"
},
"devDependencies": {
"apidoc-example": "^0.2.1",
"jshint": "~2.10.2",
"markdown-it": "^10.0.0",
"mocha": "~6.2.1",
"should": "~13.2.3"
},
"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"
]
}
}