forked from apigee-127/swagger-node-runner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.64 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
{
"name": "swagger-node-runner",
"version": "0.7.3",
"description": "Swagger loader and middleware utilities",
"keywords": [
"swagger",
"api",
"apis",
"swagger-connect",
"swagger-express",
"swagger-restify",
"swagger-hapi",
"swagger-sails"
],
"author": "Scott Ganyo <[email protected]>",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/theganyo/swagger-node-runner.git"
},
"dependencies": {
"async": "^1.5.0",
"bagpipes": "Vincit/bagpipes#b2eb059ba6f87c9185a83646fe5bac48288ccea4",
"body-parser": "^1.14.1",
"config": "^1.16.0",
"cors": "^2.5.3",
"debug": "^2.1.3",
"js-yaml": "^3.3.0",
"lodash": "^4.17.15",
"multer": "^1.0.6",
"parseurl": "^1.3.0",
"qs": "^6.4.0",
"sway": "^1.0.0",
"type-is": "^1.6.9"
},
"devDependencies": {
"connect": "^3.4.0",
"coveralls": "^2.11.4",
"express": "^4.13.3",
"hapi": "^10.0.0",
"istanbul": "^0.4.0",
"mocha": "^2.3.0",
"mocha-lcov-reporter": "^1.0.0",
"restify": "^5.2.0",
"should": "^7.1.0",
"sinon": "^1.17.2",
"supertest": "^1.1.0"
},
"scripts": {
"test": "node_modules/mocha/bin/_mocha -u exports -R spec test test/lib test/fittings",
"coverage": "node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -u exports -R spec test test/lib test/fittings",
"coveralls": "node node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec test test/lib test/fittings && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js --verbose"
}
}