forked from zont/copy-and-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 775 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
42
{
"name": "copy-and-watch",
"version": "0.1.2",
"description": "Synchronize files or folders locally, with a watch option",
"main": "index.js",
"bin": {
"copy-and-watch": "./bin/copy-and-watch"
},
"repository": {
"type": "git",
"url": "https://github.com/zont/copy-and-watch"
},
"keywords": [
"rsync",
"copy",
"cp",
"cpw",
"copyw",
"catw",
"folder",
"directory",
"file",
"watch"
],
"author": "Alexander Zonov",
"license": "MIT",
"dependencies": {
"chokidar": "^1.6.1",
"colors": "^1.1.2",
"glob": "^7.1.1",
"glob-parent": "^3.1.0"
},
"devDependencies": {
"eslint": "^3.15.0"
},
"scripts": {
"lint": "eslint index.js"
},
"engines": {
"node": ">=6.0.0"
}
}