-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "local-ssl",
"version": "1.0.8",
"description": "Make your local https just a simple step",
"main": "index.js",
"author": "Tom Le",
"license": "MIT",
"homepage": "https://github.com/tomzaku/local-ssl",
"keywords": [
"ssl",
"local",
"https",
"forward"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts\" --source-maps inline --config-file ./.babelrc",
"install:global": "yarn build:js && yarn link",
"prepare": "yarn build:js",
"postinstall": "local-ssl -i"
},
"bin": {
"local-ssl": "bin/local-ssl"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "^9.1.0",
"hostile": "^1.3.3",
"http-proxy": "1.15.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/node": "^16.10.2",
"util": "^0.12.4"
}
}