forked from multivacplatform/swagger-node-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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.8.2-patch.7",
"description": "Swagger loader and middleware utilities",
"keywords": [
"swagger",
"api",
"apis",
"swagger-connect",
"swagger-express",
"swagger-restify",
"swagger-hapi",
"swagger-sails"
],
"author": "Maziyar PANAHI <maziyar.panahi@iscpif.fr>",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/multivacplatform/swagger-node-runner.git"
},
"dependencies": {
"async": "^3.1.0",
"bagpipes": "^0.2.2",
"body-parser": "^1.19.0",
"config": "^3.2.2",
"cors": "^2.8.5",
"debug": "^4.1.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"multer": "1.4.5-lts.1",
"parseurl": "^1.3.3",
"qs": "^6.8.0",
"sway": "^2.0.6",
"type-is": "^1.6.18"
},
"devDependencies": {
"connect": "^3.7.0",
"coveralls": "^3.0.4",
"express": "^4.17.1",
"hapi": "18.1.0",
"istanbul": "0.4.5",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"restify": "^5.2.0",
"should": "^13.2.3",
"sinon": "^7.4.2",
"supertest": "^4.0.2"
},
"scripts": {
"test": "node_modules/mocha/bin/_mocha -u bdd -R spec test test/lib test/fittings",
"coverage": "node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha --report lcovonly -- -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 && rm -rf ./coverage"
}
}