forked from JamesMessinger/swagger-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.55 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
{
"name": "swagger-server",
"version": "1.0.0-alpha.18",
"description": "Get your REST API up-and-running FAST with Swagger and Express",
"keywords": [
"express",
"swagger",
"server",
"mock",
"fake",
"stub",
"test",
"rest",
"api",
"json",
"spec",
"specification",
"contract"
],
"author": {
"name": "James Messinger",
"url": "http://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://github.com/BigstickCarpet/swagger-server",
"main": "lib/index.js",
"scripts": {
"build": "jshint . --verbose && jscs . --verbose",
"test": "istanbul cover _mocha -- --bail --recursive tests",
"mocha": "mocha --bail --recursive tests",
"upgrade": "ncu --upgradeAll && npm update",
"bump": "bump --prerelease --tag --push --all",
"release": "npm run upgrade && npm run build && npm test && npm run bump && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/BigstickCarpet/swagger-server.git"
},
"devDependencies": {
"chai": "^3.2.0",
"coveralls": "^2.11.4",
"istanbul": "^0.3.20",
"jscs": "^2.1.1",
"jshint": "^2.8.0",
"mocha": "^2.3.2",
"mockery": "^1.4.0",
"nock": "^2.11.0",
"npm-check-updates": "^2.2.3",
"sinon": "^1.16.1",
"supertest": "^1.1",
"version-bump-prompt": "^1.5.1"
},
"dependencies": {
"debug": "^2.2.0",
"directory-search": "0.0.32",
"express": "^4.13.3",
"lodash": "^3.10.1",
"swagger-express-middleware": ">=1.0.0-alpha.12",
"swagger-methods": "^1.0.0"
}
}