forked from Surnet/swagger-jsdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "swagger-jsdoc",
"version": "1.9.7",
"description": "Generates swagger doc based on JSDoc",
"main": "index.js",
"scripts": {
"coverage": "istanbul cover _mocha --report html && istanbul check-coverage --statement 95",
"jsdoc": "jsdoc --configure .jsdocconf",
"start": "node example/app.js",
"test": "mocha"
},
"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": {
"chokidar": "^1.7.0",
"commander": "^2.11.0",
"doctrine": "^2.0.0",
"js-yaml": "^3.8.4",
"recursive-iterator": "^2.0.3",
"swagger-parser": "^3.4.1"
},
"devDependencies": {
"body-parser": "^1.17.2",
"chai": "^4.0.2",
"express": "^4.15.3",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"mocha": "^3.4.2",
"mocha-jscs": "^5.0.1",
"mocha-jshint": "^2.3.1",
"supertest": "^3.0.0"
}
}