-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.83 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.83 KB
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
98
99
100
101
102
103
104
105
106
{
"name": "edgemicro",
"version": "3.3.8",
"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": "^16.4.7",
"fs-extra": "^11.2.0",
"js-yaml": "^3.5.4",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.19",
"log-symbols": "^1.0.2",
"microgateway-edgeauth": "^3.2.2",
"microgateway-plugins": "^3.3.8",
"minimatch": "^3.0.4",
"opentracing": "^0.14.3",
"pem": "^1.8.1",
"portastic": "^1.0.1",
"postman-request": "^2.88.1-postman.43",
"redis": "^3.1.2",
"resolve": "^1.20.0",
"rimraf": "^6.0.1",
"sanitizer": "^0.1.3",
"tunnel-agent": "^0.6.0",
"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.5",
"xml2js": "^0.5.0",
"tmp": "^0.2.5"
},
"devDependencies": {
"chai": "~5.2.0",
"eslint": "^9.22.0",
"eslint-config-google": "^0.14.0",
"istanbul": "~0.4.2",
"jshint-stylish": "^2.2.1",
"minimist": "^1.2.6",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"proxyquire": "^2.1.3",
"rewire": "7.0.0",
"should": "~13.2.3",
"test-until": "^1.1.1",
"sinon": "^20.0.0"
},
"overrides": {
"semver": "7.5.4"
},
"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",
"test:config": "nyc mocha config/tests/*.unit.test.js",
"test:core": "nyc mocha core/tests",
"test:all": "mocha tests/*.*.integ.test.js --timeout 90000 && nyc mocha tests/*.*.unit.test.js config/tests/*.unit.test.js core/tests"
},
"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 <tapasthakkar@gmail.com> (https://github.com/tapasthakkar)",
"Keyur Karnik <keyur.karnik+github@gmail.com> (https://github.com/keyurkarnik)",
"Srinandan Sridhar <nandanks@gmail.com> (https://github.com/srinandan)"
],
"author": "Kevin Swiber <kswiber@gmail.com>",
"engines": {
"node": "^20 || ^22 || ^24",
"npm": ">=8.19.3"
},
"cpu": [
"!arm",
"!mips"
]
}