-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.77 KB
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
{
"name": "apidoc",
"version": "0.20.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": "http://apidocjs.com",
"repository": {
"type": "git",
"url": "https://github.com/orangehrm/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 -i example/ -o tmp/",
"update-lodash": "./node_modules/lodash-cli/bin/lodash -p -o template/vendor/lodash.custom.min.js include=groupBy,each,extend,some exports=amd"
},
"keywords": [
"api",
"apidoc",
"doc",
"documentation",
"rest",
"restful"
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"apidoc-core": "git://github.com/orangehrm/apidoc-core.git#master",
"commander": "^2.20.0",
"fs-extra": "^8.1.0",
"lodash": "^4.17.15",
"markdown-it": "^10.0.0",
"nodemon": "^2.0.2",
"winston": "3.2.1"
},
"devDependencies": {
"amdefine": "^1.0.1",
"apidoc-example": "^0.2.1",
"bootstrap": "3.4.1",
"jquery": "3.4.1",
"jshint": "^2.11.0",
"lodash-cli": "^4.17.5",
"mocha": "^6.2.2",
"path-to-regexp": "^3.2.0",
"semver": "^6.3.0",
"should": "~13.2.1",
"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"
]
}
}