-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
46 lines (46 loc) · 855 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
43
44
45
46
{
"name": "wach",
"description": "Run a command when a file add/update event occurs",
"version": "3.0.0",
"main": "./lib/wach",
"bin": {
"wach": "./bin/wach",
"wachs": "./bin/wachs"
},
"engines": {
"node": ">=0.4.0 <5.0.0"
},
"dependencies": {
"minimatch": ">=0.0.5",
"wachdir": "~0.1.0"
},
"devDependencies": {
"coffee-script": "~1.6.3",
"mocha": "0.14.1"
},
"os": [
"darwin"
],
"author": "Myles Byrne",
"repository": {
"type": "git",
"url": "git://github.com/quackingduck/wach.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/quackingduck/wach/raw/master/LICENSE"
}
],
"keywords": [
"watch",
"filesystem",
"fsevents",
"monitor",
"supervise",
"observe"
],
"scripts": {
"build": "coffee -co lib src"
}
}