-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (28 loc) · 850 Bytes
/
package.json
File metadata and controls
33 lines (28 loc) · 850 Bytes
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
{
"name": "coffee-watcher",
"description": "A script that can watch a directory and recompile your .coffee scripts if they change",
"keywords": ["coffeescript", "reload", "watch", "recompile"],
"author": "amix",
"version": "1.6.0",
"dependencies": {
"commander": "0.6.0",
"watcher_lib": "1.2.0"
},
"licenses": [{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}],
"engines": {
"node": ">=0.2.0",
"watcher_lib": ">=1.1.0",
"commander": ">=0.6.0",
"docco": ">=0.3.0"
},
"directories": {
"lib" : "./lib"
},
"main" : "./lib/coffee-watcher",
"bin": {
"coffee-watcher": "./bin/coffee-watcher"
}
}