-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.96 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
{
"name": "defra-swagger-node-runner",
"version": "0.0.2",
"description": "A fork of swagger-node-runner <https://github.com/theganyo/swagger-node-runner> compatible with hapi.js 17",
"keywords": [
"swagger",
"api",
"apis",
"swagger-connect",
"swagger-express",
"swagger-restify",
"swagger-hapi",
"swagger-sails"
],
"engines": {
"node": ">=8.x"
},
"author": "Department for Environment, Food and Rural Affairs <https://www.gov.uk/government/organisations/department-for-environment-food-rural-affairs>.",
"license": "SEE LICENSE IN LICENSE",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/DEFRA/swagger-node-runner"
},
"bugs": {
"url": "https://github.com/DEFRA/swagger-node-runner/issues"
},
"homepage": "https://github.com/DEFRA/swagger-node-runner#readme",
"dependencies": {
"async": "^1.5.0",
"bagpipes": "^0.1.0",
"body-parser": "^1.14.1",
"config": "^1.16.0",
"cors": "^2.5.3",
"debug": "^2.1.3",
"express": "^4.13.3",
"hapi": "^17.0.0",
"js-yaml": "^3.3.0",
"lodash": "^3.6.0",
"multer": "^1.0.6",
"parseurl": "^1.3.0",
"qs": "^6.4.0",
"restify": "^5.2.0",
"sway": "^1.0.0",
"type-is": "^1.6.9"
},
"devDependencies": {
"connect": "^3.4.0",
"coveralls": "^3.0.0",
"istanbul": "^0.4.0",
"mocha": "^5.0.0",
"mocha-lcov-reporter": "^1.0.0",
"should": "^13.2.1",
"sinon": "^4.2.2",
"supertest": "^3.0.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"
}
}