forked from apidoc/apidoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.1 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.53.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": {
"build-example": "./bin/apidoc -v -i example/ -o /tmp/apidoc-output",
"build-devxample": "./bin/apidoc -v -i example/ -o /tmp/apidoc-output --debug",
"eslint": "./node_modules/.bin/eslint --ext js,mjs lib bin/apidoc template/src",
"pre-commit": "npm run eslint && npm run test",
"serve": "npm run build-example && docker run --rm --name apidoc -p 8080:80 -v /tmp/apidoc-output:/usr/share/nginx/html:ro -d nginx",
"test": "mocha --colors --no-package --no-config 'test/**/*_test.*js'"
},
"keywords": [
"api",
"apidoc",
"doc",
"documentation",
"rest",
"restful"
],
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin",
"freebsd",
"linux",
"openbsd",
"win32"
],
"dependencies": {
"bootstrap": "3.4.1",
"commander": "^8.3.0",
"diff-match-patch": "^1.0.5",
"esbuild-loader": "^2.16.0",
"expose-loader": "^3.1.0",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"handlebars": "^4.7.7",
"iconv-lite": "^0.6.3",
"jquery": "^3.6.0",
"klaw-sync": "^6.0.0",
"lodash": "^4.17.21",
"markdown-it": "^12.2.0",
"nodemon": "^2.0.15",
"prismjs": "^1.25.0",
"semver": "^7.3.5",
"style-loader": "^3.3.1",
"webpack": "^5.64.2",
"webpack-cli": "^4.9.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/lodash": "^4.14.177",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.9",
"eslint": "^7.32.0",
"eslint-config-recommended": "^4.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"mocha": "^9.1.3"
}
}