forked from apigee/microgateway-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 781 Bytes
/
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
{
"name": "microgateway-core",
"version": "2.1.0-beta",
"description": "Core engine for Apigee Edge Microgateway",
"main": "index.js",
"dependencies": {
"async": "~1.5.2",
"debug": "~2.2.0",
"lodash": "~3.9.3",
"request": "~2.69.0",
"uuid": "~2.0.1",
"winston": "~2.2.0",
"winston-daily-rotate-file": "~1.0.1"
},
"devDependencies": {
"chai": "~2.3.0",
"istanbul": "~0.4.2",
"mocha": "~2.2.4",
"restify": "~4.0.3",
"should": "~8.2.2",
"tmp": "0.0.28"
},
"scripts": {
"start": "node server.js",
"test": "NODE_ENV=test node_modules/mocha/bin/_mocha --recursive tests",
"coverage": "DEBUG=gateway:* NODE_ENV=test node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- tests"
}
}