-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "kcsp",
"version": "0.5.0",
"description": "A simple proxy server for KanColle to avoid network problems.",
"bin": {
"kcsp": "./bin/kcsp"
},
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"author": "Gizeta",
"contributors": [{
"name": "Dazzy Ding",
"url": "https://github.com/yukixz"
}],
"license": "GPL-2.0",
"files": [
"bin",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/Gizeta/kcsp.git"
},
"keywords": [
"kancolle",
"proxy"
],
"bugs": {
"url": "https://github.com/Gizeta/kcsp/issues"
},
"homepage": "https://github.com/Gizeta/kcsp",
"dependencies": {
"daemon": "^1.1.0",
"forever-monitor": "^1.7.0",
"level": "^1.4.0",
"level-ttl": "^3.1.0",
"node-getopt": "^0.2.3",
"querystring": "^0.2.0",
"request": "^2.67.0",
"tracer": "^0.8.2"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-plugin-syntax-export-extensions": "^6.3.13",
"babel-plugin-transform-async-to-generator": "^6.4.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.4.5",
"babel-plugin-transform-export-extensions": "^6.4.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-plugin-transform-strict-mode": "^6.3.13"
}
}