-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.79 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
107
{
"name": "edgemicro",
"version": "3.3.11",
"description": "Apigee Edge Microgateway",
"main": "index.js",
"license": "Apache-2.0",
"bin": {
"edgemicro": "./cli/edgemicro"
},
"dependencies": {
"async": "^2.6.4",
"cli-prompt": "^0.5.0",
"commander": "^2.9.0",
"cpr": "^3.0.1",
"debug": "^3.1.0",
"diff": "^8.0.3",
"fs-extra": "^11.2.0",
"js-yaml": "^4.2.0",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.23",
"microgateway-edgeauth": "^3.2.2",
"microgateway-plugins": "^3.3.9",
"minimatch": "^10.2.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.1.3",
"sanitizer": "^0.1.3",
"tmp": "^0.2.5",
"tunnel-agent": "^0.6.0",
"uuid": "^11.1.1",
"volos-util-apigee": "^0.1.7",
"xml2js": "^0.5.0"
},
"overrides": {
"js-yaml": "^4.2.0",
"diff": "^8.0.3",
"serialize-javascript": "^7.0.4",
"brace-expansion": "^5.0.5",
"glob": "^10.4.5",
"postman-request": {
"uuid": "^11.1.1",
"qs": "^6.15.1"
},
"istanbul-lib-processinfo": {
"uuid": "^11.1.1"
}
},
"devDependencies": {
"dotenv": "^16.4.7",
"eslint": "^10.0.3",
"eslint-config-google": "^0.14.0",
"jshint-stylish": "^2.2.1",
"mocha": "^11.7.5",
"nyc": "^18.0.0",
"proxyquire": "^2.1.3",
"rewire": "7.0.0",
"should": "~13.2.3",
"sinon": "^21.0.2"
},
"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"
]
}