-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
34 lines (34 loc) · 933 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
{
"name": "intercept-proxy",
"description": "A light weight proxy for exposing a remote site through localhost and replace select resources with local versions for testing and development purposes.",
"version": "0.3.3",
"authors": [
"Johan Öbrink <johan.obrink@gmail.com> (https://github.com/johanobrink)"
],
"repository": {
"type": "git",
"url": "https://github.com/JohanObrink/intercept-proxy"
},
"bugs": {
"url": "https://github.com/JohanObrink/intercept-proxy/issues",
"email": "johan.obrink@gmail.com"
},
"dependencies": {
"underscore": ">=1.3.3",
"commander": "0.6.1",
"mkdirp": "0.3.3"
},
"devDependencies": {
"mocha": ">=1.4.0",
"chai": ">=1.2.0"
},
"main": "./lib/proxy",
"bin": {
"intercept-proxy": "./bin/intercept-proxy.js"
},
"scripts": {
"prepublish": "npm prune",
"start": "node app.js",
"test": "mocha -R spec ./tests/"
}
}