-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 958 Bytes
/
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
{
"name": "easy-sync2",
"version": "0.5.3",
"description": "easy to sync your dev code to remote test server",
"main": "index.js",
"scripts": {
"test": "test",
"lint": "./node_modules/eslint-watch/bin/esw --color -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flyyang/easy-sync.git"
},
"keywords": [
"sync",
"auto-push",
"rsync"
],
"bin": {
"easy-sync": "./index.js"
},
"author": "flyyang.another@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/flyyang/easy-sync/issues"
},
"homepage": "https://github.com/flyyang/easy-sync#readme",
"dependencies": {
"chokidar": "^1.6.1",
"colors": "^1.1.2",
"commander": "^2.9.0",
"glob": "^7.1.2",
"js-yaml": "^3.8.1"
},
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-watch": "^2.1.14"
}
}