-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 936 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 936 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
34
35
36
37
38
39
40
41
42
43
{
"name": "eye",
"description": "CLI tool to run commands when files change",
"version": "0.0.3",
"homepage": "https://github.com/colinwren/eye",
"author": {
"name": "Colin Wren",
"email": "colin@cawren.com"
},
"repository": {
"type": "git",
"url": "git://github.com/colinwren/eye.git"
},
"bugs": {
"url": "https://github.com/colinwren/eye/issues"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --ui bdd --reporter nyan --recursive -b -R nyan -t 3000 $(find ./test -name *.test.*)"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/colinwren/eye/blob/master/LICENSE-MIT"
}
],
"main": "index.js",
"bin": "./bin/eye",
"engines": {
"node": "~0.10.0"
},
"preferGlobal": "true",
"keywords": [
"cli",
"watch"
],
"dependencies": {
"gaze": "~0.3.4"
},
"devDependencies": {
"mocha": "*",
"should": "*"
}
}