forked from apidoc/apidoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.68 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
{
"name": "apidoc-light",
"version": "0.54.0",
"description": "RESTful web API Documentation Generator",
"author": {
"name": "rigwild",
"email": "me@rigwild.dev",
"url": "https://rigwild.dev"
},
"license": "MIT",
"main": "./lib/index.js",
"types": "index.d.ts",
"homepage": "https://apidocjs.com",
"repository": {
"type": "git",
"url": "https://github.com/rigwild/apidoc-light.git"
},
"bugs": {
"url": "https://github.com/rigwild/apidoc-light/issues"
},
"scripts": {
"eslint": "./node_modules/.bin/eslint --ext js,mjs lib",
"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": ">=16.0.0"
},
"os": [
"darwin",
"freebsd",
"linux",
"openbsd",
"win32"
],
"dependencies": {
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"iconv-lite": "^0.6.3",
"klaw-sync": "^6.0.0",
"lodash": "^4.17.21",
"markdown-it": "^14.0.0",
"semver": "^7.5.4",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.4",
"eslint": "^8.56.0",
"eslint-config-recommended": "^4.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0"
}
}