-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "foxy",
"version": "11.1.5",
"description": "Proxy with response modding",
"main": "index.js",
"scripts": {
"lint": "jshint *.js lib/*.js test/specs/*.js test/specs/*/*.js",
"unit": "mocha --recursive test/specs",
"cover": "npm run lint && istanbul cover _mocha --report lcovonly -- --timeout 10000 --recursive test/specs && istanbul-coveralls",
"test": "npm run lint && npm run unit"
},
"repository": "shakyShane/foxy",
"files": [
"lib",
"index.js",
"cli.js",
"help.txt"
],
"keywords": [
"proxy"
],
"bin": "cli.js",
"author": "Shane Osbourne",
"license": "MIT",
"dependencies": {
"connect": "^3.3.5",
"dev-ip": "^1.0.1",
"eazy-logger": "^2.0.0",
"http-proxy": "^1.9.0",
"lodash.merge": "^3.3.1",
"meow": "^3.1.0",
"resp-modifier": "^4.0.2"
},
"devDependencies": {
"cookie": "^0.1.3",
"browser-sync": "^2.3.1",
"chai": "^2.1.2",
"connect-gzip": "^0.1.6",
"istanbul": "^0.3.8",
"istanbul-coveralls": "^1.0.2",
"jshint": "^2.6.3",
"lodash": "^3.5.0",
"mocha": "^2.2.1",
"multiline": "^1.0.2",
"portscanner-plus": "^0.2.1",
"sinon": "^1.14.1",
"socket.io": "^1.3.5",
"socket.io-client": "^1.3.5",
"supertest": "^0.15.0"
}
}