forked from APIDevTools/swagger-express-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.75 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
62
63
64
65
66
67
68
69
{
"name": "swagger-express-middleware",
"version": "1.0.0-alpha.7",
"description": "Swagger middleware and mocks for Express",
"keywords": [
"express",
"swagger",
"middleware",
"mock",
"fake",
"stub",
"rest",
"api",
"json"
],
"author": {
"name": "James Messinger",
"url": "http://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://github.com/BigstickCarpet/swagger-express-middleware",
"main": "lib/index.js",
"scripts": {
"build": "jshint . --verbose && jscs . --verbose",
"test": "istanbul cover _mocha -- --bail --recursive tests",
"mocha": "mocha --bail --recursive tests",
"upgrade": "npm-check-updates -u && npm update",
"bump": "bump --prerelease --tag --push --all",
"release": "npm run build && npm test && npm run bump && npm publish --tag alpha",
"start": "cd samples && node sample2.js"
},
"repository": {
"type": "git",
"url": "https://github.com/BigstickCarpet/swagger-express-middleware.git"
},
"devDependencies": {
"istanbul": "^0.3.17",
"coveralls": "^2.11.2",
"mocha": "^2.2.5",
"chai": "^3.0.0",
"sinon": "^1.15.4",
"jscs": "^1.13.1",
"jshint": "^2.8.0",
"npm-check-updates": "^1.5.1",
"version-bump-prompt": "^1.4.0",
"basic-auth": "^1.0.2",
"chai-datetime": "^1.4.0",
"express": "^4.13.0",
"supertest": "^1.0"
},
"dependencies": {
"body-parser": "^1.13.1",
"cookie-parser": "^1.3.5",
"debug": "^2.2.0",
"lodash": "^3.10.0",
"mkdirp": "^0.5.1",
"multer": "^0.1.8",
"swagger-parser": "^3.0.0-alpha.5",
"tv4": "^1.1.12",
"type-is": "^1.6.4"
},
"engines": {
"node": ">=0.10.36",
"npm": ">=2.0"
},
"peerDependencies": {
"express": "4.x"
}
}