-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "microgateway-core",
"version": "3.3.4",
"description": "Core engine for Apigee Edge Microgateway",
"main": "index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apigee/microgateway-core.git"
},
"dependencies": {
"async": "~2.6.4",
"debug": "~3.1.0",
"lodash": "^4.17.19",
"microgateway-config": "^3.3.4",
"minimatch": "^3.0.4",
"opentracing": "^0.14.3",
"postman-request": "^2.88.1-postman.33",
"sanitizer": "^0.1.3",
"tunnel-agent": "^0.6.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"chai": "~2.3.0",
"eslint": "^8.44.0",
"eslint-config-google": "^0.13.0",
"istanbul": "~0.4.2",
"jshint-stylish": "^2.2.1",
"mocha": "^9.0.1",
"nyc": "^15.1.0",
"restify": "^11.1.0",
"rewire": "6.0.0",
"should": "~8.2.2",
"test-until": "^1.1.1",
"tmp": "0.0.28"
},
"scripts": {
"start": "node server.js",
"lint": "eslint ./lib index.js",
"test": "NODE_ENV=test nyc mocha tests"
}
}