-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "outdoc",
"version": "1.0.1",
"description": "Auto-generate OpenAPI document for Node.js service from the local testing",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"outdoc": "./bin/outdoc.js"
},
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/*.test.*'",
"prebuild": "rimraf lib",
"build": "tsc --build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dapi-labs/outdoc.git"
},
"author": "Dapi",
"license": "MIT",
"bugs": {
"url": "https://github.com/dapi-labs/outdoc/issues"
},
"homepage": "https://github.com/dapi-labs/outdoc#readme",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/content-type": "^1.1.5",
"@types/lodash.clonedeep": "^4.5.7",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.5",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"chai": "^4.3.6",
"eslint": "^8.21.0",
"lodash.clonedeep": "^4.5.0",
"mocha": "^10.0.0",
"openapi-types": "^12.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"commander": "^9.4.0",
"content-type": "^1.0.4",
"json-to-pretty-yaml": "^1.2.2",
"qs": "^6.11.0"
},
"keywords": [
"nodejs",
"openapi",
"api document",
"api generator",
"document generator"
]
}