forked from JamesMessinger/swagger-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.42 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
{
"name": "swagger-server",
"version": "1.0.0-alpha.7",
"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 -- --recursive tests",
"mocha": "mocha --recursive tests",
"update-deps": "npm-check-updates -u && npm update",
"release": "npm run update-deps && npm run build && npm test && bump --prerelease --tag --push --all && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/BigstickCarpet/swagger-server.git"
},
"devDependencies": {
"istanbul": "^0.3.14",
"coveralls": "^2.11.2",
"mocha": "^2.2.5",
"chai": "^3.0.0",
"sinon": "^1.14.1",
"jscs": "^1.13.1",
"jshint": "^2.8.0",
"npm-check-updates": "^1.5.1",
"version-bump-prompt": "^1.3.1",
"nock": "^2.4.0",
"supertest": "^1.0"
},
"dependencies": {
"debug": "^2.2.0",
"express": "^4.12.4",
"lodash": "^3.9.3",
"swagger-express-middleware": "^0.4"
}
}