-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
97 lines (97 loc) · 2.43 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "edgemicro",
"version": "3.3.5",
"description": "Apigee Edge Microgateway",
"main": "index.js",
"license": "Apache-2.0",
"bin": {
"edgemicro": "./cli/edgemicro"
},
"dependencies": {
"async": "^2.6.4",
"body-parser": "^1.20.3",
"cli-prompt": "^0.5.0",
"commander": "^2.9.0",
"config": "^3.3.9",
"cpr": "^1.1.2",
"debug": "^3.1.0",
"diff": "^3.4.0",
"dotenv": "^8.0.0",
"js-yaml": "^3.5.4",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.19",
"log-symbols": "^1.0.2",
"microgateway-config": "^3.3.5",
"microgateway-core": "^3.3.5",
"microgateway-edgeauth": "^3.2.2",
"microgateway-plugins": "^3.3.5",
"pem": "^1.8.1",
"portastic": "^1.0.1",
"postman-request": "^2.88.1-postman.40",
"rimraf": "^2.4.3",
"tmp": "0.0.28",
"uuid": "^11.0.3",
"volos-cache-memory": "^0.10.1",
"volos-spikearrest-common": "^0.10.4",
"volos-spikearrest-memory": "^0.10.2",
"volos-util-apigee": "^0.1.3",
"xml2js": "^0.5.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-google": "^0.13.0",
"jshint-stylish": "^2.2.1",
"minimist": "^1.2.6",
"mocha": "^11.0.1",
"nyc": "^15.1.0",
"restify": "^9.0.1",
"rewire": "^6.0.0",
"test-until": "^1.1.1"
},
"overrides": {
"semver": "7.5.4",
"restify": {
"send": "0.19.0"
}
},
"scripts": {
"start": "node app.js",
"stop": "node stop.js",
"lint": "eslint ./cli ./lib app.js",
"test": "mocha tests/*.*.integ.test.js --timeout 90000 && nyc mocha tests/*.*.unit.test.js"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apigee-internal/microgateway.git"
},
"keywords": [
"apigee",
"edge",
"micro",
"microgateway",
"proxy",
"gateway"
],
"bugs": {
"url": "https://github.com/apigee-internal/microgateway/issues"
},
"homepage": "https://github.com/apigee-internal/microgateway#readme",
"contributors": [
"Tapas Thakkar <[email protected]> (https://github.com/tapasthakkar)",
"Keyur Karnik <[email protected]> (https://github.com/keyurkarnik)",
"Srinandan Sridhar <[email protected]> (https://github.com/srinandan)"
],
"author": "Kevin Swiber <[email protected]>",
"engines": {
"node": "^18 || ^20 || ^22",
"npm": ">=8.19.3"
},
"cpu": [
"!arm",
"!mips"
]
}