-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 810 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 810 Bytes
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
{
"name": "json-caching-proxy",
"version": "2.0.2",
"description": "in-memory reverse caching HAR proxy",
"keywords": [
"cache",
"proxy",
"json"
],
"type": "module",
"engines": {
"node": ">=16.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.mjs",
"bin": "bin.js",
"dependencies": {
"body-parser": "^1.20.1",
"chalk": "^5.2.0",
"commander": "^9.4.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-http-proxy": "^1.6.3",
"strip-json-comments": "^5.0.0"
},
"devDependencies": {
"mocha": "^10.2.0",
"node-fetch": "^3.2.0"
}
}