-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.98 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
{
"author": {
"name": "Skipper Young"
},
"bin": {
"chrome-hosts": "cjs/index.js"
},
"bugs": {
"url": "https://github.com/gogoyqj/chrome-hosts/issues"
},
"dependencies": {
"@koa/cors": "^2.2.1",
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"commander": "^2.15.1",
"detect-port": "^1.2.2",
"fs-access": "^1.0.1",
"js-yaml": "^3.11.0",
"koa": "^2.5.0",
"koa-body": "^2.5.0",
"koa-router": "^7.4.0",
"nodejs-fs-utils": "^1.1.0",
"nodejs-websocket": "^1.7.1",
"ramda": "^0.25.0",
"superagent": "^3.8.2",
"which": "^1.3.0"
},
"description": "separate hosts & url rewrite manage for chrome",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.3.0"
},
"homepage": "https://github.com/gogoyqj/chrome-hosts#readme",
"keywords": [
"hosts-manage",
"url-rewrite-manage",
"chrome"
],
"license": "ISC",
"main": "cjs/index.js",
"maintainers": [
{
"name": "yangqianjun",
"email": "[email protected]"
}
],
"name": "chrome-hosts",
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/gogoyqj/chrome-hosts.git"
},
"scripts": {
"build": "mkdir -p cjs && mkdir -p cjs/libs && node_modules/.bin/babel src/libs/chrome-launcher.js -o cjs/libs/chrome-launcher.js && node_modules/.bin/babel src/libs/data-format.js -o cjs/libs/data-format.js && node_modules/.bin/babel src/libs/ext-factory.js -o cjs/libs/ext-factory.js && node_modules/.bin/babel src/client.js -o cjs/client.js && node_modules/.bin/babel src/config.js -o cjs/config.js && node_modules/.bin/babel src/index.js -o cjs/index.js && node_modules/.bin/babel src/server.js -o cjs/server.js && mkdir -p cjs/libs/host-switch-plus && cp -rfp src/libs/host-switch-plus/* cjs/libs/host-switch-plus/"
},
"version": "0.0.14"
}