forked from apidoc/apidoc-core
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.43 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
{
"name": "apidoc-core",
"version": "0.8.3",
"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": "^3.0.1",
"glob": "^7.1.1",
"iconv-lite": "^0.4.17",
"klaw-sync": "^2.1.0",
"lodash": "~4.17.4",
"semver": "~5.3.0"
},
"devDependencies": {
"apidoc-example": "*",
"jshint": "~2.9.4",
"markdown-it": "^8.3.1",
"mocha": "~3.4.1",
"npm-check-updates": "^2.11.1",
"should": "~11.2.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"
]
}
}