forked from sonyseng/json-caching-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 788 Bytes
/
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
{
"name": "json-caching-proxy",
"version": "1.6.1",
"description": "in-memory reverse caching HAR proxy",
"keywords": [
"cache",
"proxy",
"json"
],
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"test": "mocha ./test/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sonyseng/json-caching-proxy.git"
},
"author": "Sony Seng",
"license": "MIT",
"main": "index.js",
"bin": "bin.js",
"dependencies": {
"body-parser": "^1.17.2",
"chalk": "^4.1.0",
"commander": "^7.2.0",
"cors": "^2.8.5",
"express": "^4.14.1",
"express-http-proxy": "^1.6.2",
"strip-json-comments": "^3.1.1"
},
"devDependencies": {
"mocha": "^8.4.0",
"node-fetch": "^2.6.1"
}
}