-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
53 lines (53 loc) · 1.2 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
52
53
{
"name": "hoxy",
"version": "3.3.1",
"author": "Greg Reimer <[email protected]>",
"description": "Web-hacking proxy API for node",
"repository": {
"type": "git",
"url": "[email protected]:greim/hoxy.git"
},
"main": "./lib/main",
"scripts": {
"prepublish": "npm run compile",
"test": "mocha --compilers js:babel/register --timeout 3000",
"compile": "babel src --out-dir lib --optional runtime",
"lint": "eslint ./src",
"docs": "babel-node ./dev-bin/build.js > ./index.html"
},
"keywords": [
"develop",
"development",
"test",
"testing",
"debug",
"debugging",
"proxy",
"charles",
"fiddler",
"web"
],
"dependencies": {
"await": "^0.2.5",
"babel-runtime": "^5.7.0",
"bluebird": "^2.9.34",
"cheerio": "^0.19.0",
"co": "^4.5.4",
"colors": "^1.1.2",
"lodash": "^3.10.0",
"minimist": "^1.1.1",
"mkdirp": "^0.5.1",
"node-static": "^0.7.6",
"nodemon": "^1.0.17",
"pem": "^1.7.2",
"route-pattern": "^0.0.6",
"stream-throttle": "^0.1.3",
"ugly-adapter": "^1.1.0"
},
"license": "MIT",
"devDependencies": {
"babel": "^5.6.14",
"eslint": "^0.24.1",
"mocha": "^2.2.5"
}
}