forked from cameronhunter/local-ssl-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 929 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
36
37
38
{
"name": "local-ssl-proxy",
"version": "1.3.0",
"author": "Cameron Hunter <[email protected]>",
"description": "Simple SSL HTTP proxy using a self-signed certificate. Intended for local development only.",
"repository": {
"type": "git",
"url": "http://github.com/cameronhunter/local-ssl-proxy.git"
},
"license": "MIT",
"bin": {
"local-ssl-proxy": "bin/local-ssl-proxy"
},
"files": [
"bin",
"dist",
"resources"
],
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"test": "ava",
"prepublish": "npm run test"
},
"dependencies": {
"chalk": "^1.1.3",
"http-proxy": "^1.15.1",
"nomnom": "^1.8.1"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-preset-stage-1": "^6.16.0",
"rollup": "^0.36.1",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-json": "^2.0.2"
}
}