forked from scottie1984/swagger-ui-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.03 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
{
"name": "swagger-ui-express",
"version": "4.0.1",
"description": "Swagger UI Express",
"main": "./lib/index.js",
"files": [
"package.json",
"index.js",
"indexTemplate.html",
"swagger-ui-init.js",
"LICENSE"
],
"scripts": {
"test": "./node_modules/.bin/mocha test/*"
},
"keywords": [
"swagger",
"express",
"ui",
"json",
"documentation"
],
"private": false,
"engines": {
"node": ">= v0.10.32"
},
"devDependencies": {
"es6-shim": "0.35.2",
"express": "4.12.2",
"mocha": "2.2.5",
"phantom": "2.1.21"
},
"author": {
"name": "Stephen Scott",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:scottie1984/swagger-ui-express.git"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/scottie1984/swagger-ui-express/issues"
},
"homepage": "https://github.com/scottie1984/swagger-ui-express",
"dependencies": {
"swagger-ui-dist": "^3.18.1"
}
}