-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
52
53
54
{
"name": "wt",
"version": "1.2.0",
"description": "wt: Simple dir watcher, including all subdirectories, support multi dirs",
"main": "index.js",
"scripts": {
"test": "mocha -R spec -t 5000 -r should test/*.test.js",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -t 5000 -r should test/*.test.js",
"ci": "npm run lint && npm run test-cov",
"lint": "jshint .",
"autod": "autod -w --prefix '~'",
"contributors": "contributors -f plain -o AUTHORS"
},
"dependencies": {
"debug": "^2.2.0",
"ndir": "^0.1.5",
"sdk-base": "^2.0.1"
},
"devDependencies": {
"autod": "*",
"contributors": "*",
"istanbul": "*",
"jshint": "*",
"mocha": "3",
"pedding": "1",
"rimraf": "^2.5.2",
"rmdir-recursive": "~0.0.1",
"should": "6"
},
"homepage": "https://github.com/node-modules/wt",
"repository": {
"type": "git",
"url": "git://github.com/node-modules/wt.git"
},
"bugs": {
"url": "https://github.com/node-modules/wt/issues",
"email": "[email protected]"
},
"keywords": [
"watch",
"watcher",
"wt",
"fs",
"dir",
"multi-watch",
"subdir",
"subdirectories"
],
"engines": {
"node": ">= 0.12.9"
},
"author": "fengmk2 <[email protected]> (http://fengmk2.com)",
"license": "MIT"
}