-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 1.93 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "localhost-mapper",
"version": "0.1.0",
"description": "Run your dev servers on addresses like https://awesome-site/ or https://🍔/ instead of localhost",
"license": "MIT",
"repository": "KishanBagaria/localhost-mapper",
"author": {
"name": "Kishan Bagaria",
"email": "[email protected]",
"url": "kishanbagaria.com"
},
"keywords": [
"pac",
"proxyautoconfig",
"networksetup",
"hotel",
"proxy",
"dev",
"devtool",
"domain",
"host",
"https",
"local",
"localhost",
"process",
"mapper",
"server"
],
"bin": {
"localhost-mapper": "./lib/bin.js",
"lh-map": "./lib/bin.js"
},
"scripts": {
"build": "babel --copy-files --out-dir ./lib ./src",
"watch": "babel --watch --copy-files --out-dir ./lib ./src",
"lint": "eslint --ignore-pattern lib .",
"test": "yarn lint && ava"
},
"dependencies": {
"@babel/polyfill": "^7",
"@babel/runtime": "^7",
"async-exit-hook": "^2.0.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"boxen": "^1.3.0",
"chalk": "^2.3.0",
"execa": "^0.9.0",
"express": "^4.16.2",
"fs-extra": "^5.0.0",
"get-port": "^3.2.0",
"got": "^8.0.3",
"http-proxy": "^1.16.2",
"lodash": "^4.17.4",
"micromatch": "^3.1.6",
"minimist": "^1.2.0",
"opn": "^5.2.0",
"selfsigned": "^1.10.1",
"signal-exit": "^3.0.2",
"update-notifier": "^2.3.0",
"winreg": "^1.2.4"
},
"devDependencies": {
"@babel/cli": "^7",
"@babel/core": "^7",
"@babel/plugin-syntax-dynamic-import": "^7",
"@babel/plugin-transform-runtime": "^7",
"@babel/preset-env": "^7",
"ava": "*",
"babel-eslint": "^7",
"babel-plugin-dynamic-import-node": "^1.2.0",
"eslint": "^4",
"eslint-config-airbnb-base": "^12",
"eslint-plugin-import": "^2",
"puppeteer": "^1.0.0"
},
"engines": {
"node": ">=6"
},
"ava": {
"failFast": true
}
}