forked from Surnet/swagger-jsdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.63 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
{
"name": "swagger-jsdoc",
"version": "3.0.2",
"description": "Generates swagger doc based on JSDoc",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"test:lint": "eslint .",
"test:js": "mocha --timeout 10000 --exit",
"start": "node example/app.js",
"test": "run-p test:* -cn"
},
"bin": {
"swagger-jsdoc": "./bin/swagger-jsdoc.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Surnet/swagger-jsdoc.git"
},
"keywords": [
"jsdoc",
"restful",
"api",
"express",
"swagger"
],
"author": "https://github.com/Surnet/swagger-jsdoc/graphs/contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/Surnet/swagger-jsdoc/issues"
},
"homepage": "https://github.com/Surnet/swagger-jsdoc",
"dependencies": {
"commander": "2.11.0",
"doctrine": "2.0.0",
"glob": "7.1.2",
"js-yaml": "3.8.4",
"recursive-iterator": "3.3.0",
"swagger-parser": "5.0.0"
},
"devDependencies": {
"body-parser": "1.17.2",
"chai": "4.0.2",
"chai-jest-snapshot": "2.0.0",
"eslint": "5.1.0",
"eslint-config-airbnb-base": "13.0.0",
"eslint-config-prettier": "2.9.0",
"eslint-loader": "2.0.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-prettier": "2.6.2",
"express": "4.15.3",
"husky": "1.0.0-rc.13",
"lint-staged": "7.2.0",
"mocha": "5.2.0",
"npm-run-all": "4.1.3",
"prettier": "1.13.7",
"supertest": "3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}