forked from amasad/sane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.14 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
46
47
48
49
50
51
{
"name": "sane",
"version": "1.4.1",
"description": "Sane aims to be fast, small, and reliable file system watcher.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/amasad/sane"
},
"files": [
"src",
"index.js"
],
"scripts": {
"prepublish": "jshint --config=.jshintrc src/ index.js && mocha --bail",
"test": "jshint --config=.jshintrc src/ index.js && mocha --bail test/test.js && mocha --bail test/utils-test.js",
"test:debug": "mocha debug --bail"
},
"bin": "./src/cli.js",
"keywords": [
"watch",
"file",
"fswatcher",
"watchfile",
"fs",
"watching"
],
"author": "amasad",
"license": "MIT",
"dependencies": {
"exec-sh": "^0.2.0",
"fb-watchman": "^1.9.0",
"minimatch": "^3.0.2",
"minimist": "^1.1.1",
"walker": "~1.0.5",
"watch": "~0.10.0"
},
"devDependencies": {
"jshint": "^2.5.10",
"mocha": "~1.17.1",
"rimraf": "~2.2.6",
"tmp": "0.0.27"
},
"engines": {
"node": ">=0.6.0"
},
"bugs": {
"url": "https://github.com/amasad/sane/issues"
},
"homepage": "https://github.com/amasad/sane"
}