-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "node-frp",
"version": "1.0.2",
"description": "frp in node!",
"main": "./bin/index.js",
"scripts": {
"compile": "babel src/ --out-dir lib/",
"watch-compile": "npm run compile -- --watch",
"watch": "npm run watch-compile",
"prepublish": "npm run compile",
"test": "mocha --reporter spec --timeout 1000000 --recursive test/*.js",
"test-ci": "mocha --reporter spec --recursive \"test/!(http).js\""
},
"bin": {
"frp": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1021683053/node-frp.git"
},
"keywords": [
"frp",
"frpc",
"frps"
],
"author": "Liweifeng",
"license": "ISC",
"bugs": {
"url": "https://github.com/1021683053/node-frp/issues"
},
"homepage": "https://github.com/1021683053/node-frp#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"source-map": "0.5.3"
},
"dependencies": {
"babel-runtime": "^6.20.0",
"commander": "^2.9.0",
"lodash": "^4.17.3",
"progress": "git://github.com/visionmedia/node-progress",
"request": "^2.79.0",
"shelljs": "^0.7.5",
"targz": "^1.0.1",
"unzip": "^0.1.11"
}
}