-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.64 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
{
"name": "caching-proxy",
"description": "A caching proxy server useable in your front-end projects to cache API requests and rewrite their responses as needed to be routed through server - for tradeshows, demos, data that you know will be retired someday, and load testing in shared environments (exmample CloudTV where a server could be running thousands of browser sessions at once and you want to test server scalability independent of APIs an app might depend on, ala activevideo.com)",
"version": "1.3.3",
"author": "Chad Wagner <[email protected]> (http://developer.activevideo.com/), Steve Oziel <[email protected]> ",
"keywords": [
"test",
"testing",
"mock",
"stub",
"http",
"vcr",
"api",
"server"
],
"main": "lib/caching-proxy",
"directories": {
"doc": "./doc",
"lib": "./lib"
},
"scripts": {
"start": "node start.js -p 8092 -d data -e token,rand",
"startdev": "node $NODE_DEBUG_OPTION start.js -p 8092 -d data -e token,rand",
"startdev-with-parent-proxy": "node $NODE_DEBUG_OPTION start.js -p 8092 -d data -e token,rand --proxyHost 172.19.241.101 --proxyPort 3128"
},
"dependencies": {
"dateformat": "^2.0.0",
"file-type": "^3.8.0",
"follow-redirects": ">=0.0.3",
"https-proxy-agent": "^2.2.1",
"mkdirp": ">=0.5.0",
"optimist": ">=0.6.1",
"pm2": "^2.1.6",
"request": ">=2.49.0",
"sanitize-filename": ">=1.3.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/active-video/caching-proxy"
},
"bugs": {
"url": "https://github.com/active-video/caching-proxy/issues"
},
"license": "MIT"
}