forked from cmoncrief/beholder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 759 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 759 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
{
"name": "beholder",
"version": "0.1.2",
"author": "Charles Moncrief <cmoncrief@gmail.com>",
"description": "Robust cross-platform file watcher",
"main": "lib/beholder.js",
"directories": {
"test": "test"
},
"scripts": {
"prepublish": "cake build",
"test": "cake test"
},
"repository": {
"type": "git",
"url": "https://github.com/cmoncrief/beholder.git"
},
"keywords": [
"watch",
"fs",
"watchfile",
"watcher",
"file"
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"glob": "~3.1.20",
"minimatch": "~0.2.9",
"async": "~0.2.5"
},
"devDependencies": {
"mocha": "~1.8.1",
"coffee-script": "~1.4.0"
},
"engines": {
"node": ">=0.8"
}
}