forked from JulianNymark/apidoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.8 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
69
70
71
72
73
74
75
76
77
78
{
"name": "apidoc",
"version": "0.28.1",
"description": "RESTful web API Documentation Generator",
"author": "Peter Rottmann <rottmann@inveris.de>",
"license": "MIT",
"preferGlobal": true,
"bin": "bin/apidoc",
"main": "./lib/index.js",
"homepage": "https://apidocjs.com",
"repository": {
"type": "git",
"url": "https://github.com/apidoc/apidoc.git"
},
"bugs": {
"url": "https://github.com/apidoc/apidoc/issues"
},
"scripts": {
"test": "npm run jshint && mocha test/",
"jshint": "jshint lib/ test/",
"build-example": "bin/apidoc -v -i example/ -o tmp/",
"update-lodash": "./node_modules/lodash-cli/bin/lodash -p -o template/vendor/lodash.custom.min.js include=get,set,groupBy,each,extend,some,isNaN exports=amd"
},
"keywords": [
"api",
"apidoc",
"doc",
"documentation",
"rest",
"restful"
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"apidoc-core": "^0.15.0",
"commander": "^2.20.0",
"fs-extra": "^9.0.1",
"handlebars": "^4.7.7",
"lodash": "^4.17.20",
"markdown-it": "^11.0.0",
"nodemon": "^2.0.4",
"winston": "^3.3.3"
},
"devDependencies": {
"amdefine": "^1.0.1",
"apidoc-example": "^0.2.3",
"bootstrap": "3.4.1",
"jquery": "3.5.1",
"jshint": "^2.12.0",
"lodash-cli": "^4.17.5",
"mocha": "^8.1.1",
"path-to-regexp": "^3.2.0",
"requirejs": "^2.3.6",
"semver": "^7.3.2",
"should": "~13.2.3",
"webfontloader": "^1.6.28"
},
"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"
]
}
}