-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
{
"name": "swagger-ui-express-subtags",
"version": "1.0.5",
"description": "Swagger UI Express",
"main": "./index.js",
"files": [
"package.json",
"index.js",
"indexTemplate.html.tpl",
"swagger-ui-init.js.tpl",
"LICENSE"
],
"scripts": {
"test": "./node_modules/.bin/mocha test/*",
"coverage:report": "nyc ./node_modules/.bin/mocha test/* || exit 0",
"coverage:badge": "npm run coverage:report && istanbul-badges-readme --coverageDir='./coverage'",
"test-app": "node ./test/testapp/run.js "
},
"keywords": [
"swagger",
"express",
"ui",
"json",
"documentation"
],
"private": false,
"engines": {
"node": ">= v0.10.32"
},
"devDependencies": {
"es6-shim": "0.35.2",
"express": "4.12.2",
"istanbul-badges-readme": "^1.2.0",
"mocha": "2.2.5",
"nyc": "^15.1.0",
"puppeteer": "5.3.1"
},
"license": "MIT",
"dependencies": {
"swagger-ui-dist": ">=4.11.0"
},
"peerDependencies": {
"express": ">=4.0.0"
}
}