-
Notifications
You must be signed in to change notification settings - Fork 228
/
package.json
72 lines (72 loc) · 1.65 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
{
"name": "swagger-jsdoc",
"description": "Generates swagger doc based on JSDoc",
"version": "6.1.0",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "node examples/app/app.js",
"lint": "eslint .",
"test:lint": "eslint .",
"test:js": "jest --verbose",
"test": "run-p test:* -cn"
},
"main": "index.js",
"bin": {
"swagger-jsdoc": "./bin/swagger-jsdoc.js"
},
"dependencies": {
"commander": "6.2.0",
"doctrine": "3.0.0",
"glob": "7.1.6",
"lodash.mergewith": "^4.6.2",
"swagger-parser": "^10.0.3",
"yaml": "2.0.0-1"
},
"devDependencies": {
"body-parser": "1.20.2",
"eslint": "8.9.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-webpack-plugin": "^4.0.1",
"express": "4.17.3",
"husky": "7.0.4",
"jest": "^26.6.1",
"lint-staged": "10.5.2",
"npm-run-all": "4.1.5",
"prettier": "2.2.0",
"supertest": "6.0.1"
},
"license": "MIT",
"homepage": "https://github.com/Surnet/swagger-jsdoc",
"repository": {
"type": "git",
"url": "https://github.com/Surnet/swagger-jsdoc.git"
},
"keywords": [
"swagger",
"openapi",
"jsdoc"
],
"author": "https://github.com/Surnet/swagger-jsdoc/graphs/contributors",
"bugs": {
"url": "https://github.com/Surnet/swagger-jsdoc/issues"
},
"resolutions": {
"minimist": ">=1.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,yml,yaml}": [
"prettier --write"
]
}
}