-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1 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
{
"name": "watchcopy",
"version": "0.1.0",
"description": "Watch a folder for changes and copy matching files to target",
"main": "lib/watchcopy.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"prepublish": "npm run build"
},
"bin": {
"wtcp": "lib/watchcopy.js"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/elankath/watchcopy.git"
},
"keywords": [
"es6",
"watch",
"copy",
"node.js"
],
"author": "Tarun R Elankath <[email protected]> (https://github.com/lenkite/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/elankath/watchcopy/issues"
},
"homepage": "https://github.com/elankath/watchcopy",
"devDependencies": {
"babel": "^4.7.16"
},
"dependencies": {
"chokidar": "^1.0.0-rc4",
"core-js": "^0.7.2",
"docopt": "^0.6.1",
"fs-extra": "^0.16.5",
"osenv": "^0.1.0"
}
}