forked from apigee-internal/microgateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.85 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
98
99
100
101
102
103
104
{
"name": "edgemicro",
"version": "3.1.6",
"description": "Apigee Edge Microgateway",
"main": "index.js",
"license": "Apache-2.0",
"bin": {
"edgemicro": "./cli/edgemicro"
},
"dependencies": {
"apigeetool": "^0.7.0",
"async": "^1.5.2",
"body-parser": "^1.19.0",
"cli-prompt": "^0.5.0",
"commander": "^2.9.0",
"config": "^1.13.0",
"cpr": "^1.1.2",
"debug": "^3.1.0",
"diff": "^3.4.0",
"dotenv": "^8.0.0",
"forever-monitor": "^3.0.1",
"fs-extra": "^0.20.1",
"js-yaml": "^3.5.4",
"jsonwebtoken": "^5.7.0",
"lodash": "^4.17.19",
"log-symbols": "^1.0.2",
"microgateway-config": "^3.1.5",
"microgateway-core": "^3.1.7",
"microgateway-edgeauth": "^3.1.1",
"microgateway-plugins": "^3.1.1",
"pem": "^1.8.1",
"portastic": "^1.0.1",
"request": "^2.87.0",
"rimraf": "^2.4.3",
"tmp": "0.0.28",
"uuid": "^3.2.1",
"volos-cache-memory": "^0.10.1",
"volos-spikearrest-common": "^0.10.3",
"volos-spikearrest-memory": "^0.10.2",
"xml2js": "^0.4.16"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-google": "^0.13.0",
"gulp": "^4.0.2",
"gulp-shell": "^0.6.5",
"gulp-sourcemaps": "^1.5.2",
"jshint-stylish": "^2.2.1",
"minimist": "^1.1.1",
"mocha": "^7.0.0",
"nyc": "^14.1.1",
"request-promise": "^4.2.4",
"restify": "^8.4.0",
"rewire": "^4.0.1",
"run-sequence": "^1.1.0",
"test-until": "^1.1.1"
},
"scripts": {
"start": "node app.js",
"stop": "node stop.js",
"lint": "eslint ./cli ./lib app.js forever.js",
"package": "node cli/package.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": [
"Prabhat Jha <[email protected]> (https://github.com/prabhatjha)",
"Sean Williams (https://github.com/swilliams11)",
"Noah Dietz <[email protected]> (https://github.com/noahdietz)",
"Shawn Feldman (https://github.com/shawnfeldman)",
"Kevin Swiber <[email protected]> (https://github.com/kevinswiber)",
"Matt Dobson <[email protected]> (https://github.com/mdobson)",
"Mitch Fierro <[email protected]> (https://github.com/f1erro)",
"Srinandan Sridhar <[email protected]> (https://github.com/srinandan)"
],
"author": "Kevin Swiber <[email protected]>",
"engines": {
"node": ">= 6.14.2",
"npm": ">=3.10.8"
},
"cpu": [
"!arm",
"!mips"
]
}