-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
54
55
56
{
"name": "yafp",
"version": "0.0.5",
"description": "Yet Another Forward Proxy",
"main": "dist/lib/index.js",
"typings": "dist/lib/index.d.ts",
"files": [
"dist/lib",
"cert/"
],
"scripts": {
"test": "mocha -s 1000 dist/test",
"test-cov": "istanbul cover _mocha --report lcovonly -- -s 1000 dist/test",
"lint": "find lib/ -type f | xargs tslint",
"proxy": "NODE_ENV=production node dist/bin/proxy.js",
"build": "npm run lint && tsc",
"prepublish": "npm run build",
"clean": "rm -rf dist/lib dist/test dist/examples dist/bin"
},
"repository": {
"type": "git",
"url": "https://github.com/bls/node-yafp.git"
},
"keywords": [
"proxy",
"web",
"mitm"
],
"author": "Blair Strang <[email protected]>",
"homepage": "https://github.com/bls/",
"license": "MIT",
"engines": {
"node": "^4.0.0"
},
"devDependencies": {
"body-parser": "^1.14.1",
"coveralls": "^2.11.6",
"express": "^4.13.3",
"istanbul": "^0.4.2",
"jimp": "^0.2.21",
"mocha": "^2.2.4",
"remap-istanbul": "^0.5.1",
"tslint": "^2.5.0-beta",
"typescript": "^1.8.0"
},
"dependencies": {
"@sane/fs": "^1.0.2",
"@sane/service": "^1.0.0",
"es6-promisify": "^3.0.0",
"header-case-normalizer": "^1.0.3",
"pem": "^1.8.1",
"request": "^2.67.0",
"tunnel-agent": "^0.4.2",
"ws": "^1.0.1"
}
}