This repository was archived by the owner on Apr 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 KB
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
{
"name": "swagger-suite",
"version": "1.0.0",
"description": "No longer maintained. Please use https://github.com/swagger-api/swagger-node",
"keywords": [
"rest",
"json",
"yaml",
"api",
"spec",
"specification",
"contract",
"schema",
"editor",
"mock",
"fake",
"test",
"docs",
"documentation",
"server",
"express",
"connect",
"swagger",
"postman"
],
"author": {
"name": "James Messinger",
"url": "http://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://github.com/BigstickCarpet/swagger-suite",
"main": "index.js",
"scripts": {
"start": "node ./samples/user-manager/server.js",
"petstore": "DEBUG=swagger:* node ./samples/petstore/server.js",
"petstore-windows": "set DEBUG=swagger:* && node ./samples/petstore/server.js",
"users": "DEBUG=swagger:* node ./samples/user-manager/server.js",
"users-windows": "set DEBUG=swagger:* && node ./samples/user-manager/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/BigstickCarpet/swagger-suite.git"
},
"dependencies": {
"body-parser": "^1.9.0",
"debug": "~2.0.0",
"express": "~4.9.0",
"lodash": "^2.4.1",
"morgan": "~1.3.0",
"serve-favicon": "^2.1.5",
"js-yaml": "^3.2.2",
"swagger-server": "0.x"
}
}