-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (36 loc) · 1.03 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
43
44
45
{
"name": "wr",
"description": "watch files and run a command when they change",
"author": "Patrick Mueller",
"version": "1.3.1",
"tags": [ "command", "watch" ],
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"engines": {
"node": ">=0.4.0"
},
"directories": {
"lib" : "./lib"
},
"dependencies": {
"optimist": "0.6.x",
"colors": "0.6.x"
},
"devDependencies": {
"coffee-script": "1.6.x"
},
"main" : "./lib/command",
"bin": {
"wr": "./bin/wr"
},
"homepage": "https://github.com/pmuellr/wr",
"bugs": "https://github.com/pmuellr/wr/issues",
"repository": {
"type": "git",
"url": "git://github.com/pmuellr/wr"
}
}