-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
45 lines (45 loc) · 2.1 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
{
"name": "Volos",
"version": "1.0.1",
"comments": "This package.json is here so we can get dependencies installed to run tests. Install mocha and istanbul globally.",
"private": true,
"dependencies": {
"apigee-access": ">=1.3.0",
"apigeetool": "x.x.x",
"argo": "^0.6.x",
"async": "0.8.x",
"body-parser": "1.9.2",
"commander": "2.2.x",
"connect": "^3.3.5",
"debug": "^2.2.0",
"express": "^4.0.0",
"inquirer": "0.5.x",
"js-yaml": "^3.5.3",
"longjohn": "0.2.x",
"lru-cache-plus": "2.5.x",
"on-finished": "~2.2.1",
"proxy": "^0.2.4",
"redis": "0.10.x",
"postman-request": "^2.88.1-postman.33",
"semver": "7.x.x",
"swagger-tools": "^0.8.0",
"twit": "1.1.x",
"underscore": "1.12.1",
"uuid": "^3.0.0",
"volos-quota-common": "^0.11.12",
"yamljs": "^0.3.0"
},
"devDependencies": {
"coveralls": "^3.0.6",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"should": "^3.1.0",
"superagent": "^3.2.1",
"supertest": "^1.2.0"
},
"scripts": {
"test": "bin/link;node_modules/mocha/bin/mocha -u exports -R spec cache/memory/test cache/redis/test cache/test/middlewaretest.js management/redis/test oauth/redis/test quota/memory/test quota/redis/test quota/test/middlewaretest.js swagger/test analytics/memory/test analytics/test/middlewaretest.js spikearrest/memory/test spikearrest/test/middlewaretest.js",
"test-apigee": "bin/link;mocha -u exports -R spec cache/apigee/test/apigeetest.js management/apigee/test oauth/apigee/test quota/apigee/test analytics/apigee/test",
"coveralls": "bin/link;DEBUG=cache,quota,oauth,swagger,analytics,spikearrest ROLLING_TESTS=true node node_modules/istanbul/lib/cli.js cover _mocha --report lcovonly -- -R spec cache/memory/test cache/redis/test cache/test/middlewaretest.js management/redis/test oauth/redis/test quota/memory/test quota/redis/test quota/test/middlewaretest.js swagger/test analytics/memory/test analytics/test/middlewaretest.js spikearrest/memory/test spikearrest/test/middlewaretest.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js --verbose"
}
}