forked from esnunes/my-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 841 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
35
{
"name": "my-proxy",
"version": "1.0.5",
"description": "pretty simple http(s) proxy",
"main": "lib/index.js",
"bin": {
"my-proxy": "bin/my-proxy.js"
},
"scripts": {
"test": "./node_modules/.bin/eslint lib bin"
},
"repository": {
"type": "git",
"url": "[email protected]:esnunes/my-proxy.git"
},
"author": "Eduardo Nunes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/esnunes/my-proxy/issues"
},
"homepage": "https://github.com/esnunes/my-proxy",
"dependencies": {
"babel": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"commander": "^2.7.1",
"escape-regexp": "0.0.1",
"http-proxy": "^1.10.1",
"lodash": "^3.6.0"
},
"devDependencies": {
"eslint": "^4.8.0"
}
}