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
|
{
"description": "A wrapper and enhancements for fs.watch",
"license": "MIT",
"name": "node-watch",
"repository": {
"url": "git://github.com/yuanchuan/node-watch.git",
"type": "git"
},
"keywords": [
"fs.watch",
"watch",
"watchfile"
],
"version": "0.7.3",
"bugs": {
"url": "https://github.com/yuanchuan/node-watch/issues"
},
"url": "https://github.com/yuanchuan/node-watch",
"author": "yuanchuan <yuanchuan23@gmail.com> (http://yuanchuan.name)",
"main": "./lib/watch",
"types": "./lib/watch.d.ts",
"files": [
"lib/"
],
"homepage": "https://github.com/yuanchuan/node-watch#readme",
"scripts": {
"test": "mocha test/test.js --exit --slow 500"
},
"engines": {
"node": ">=6"
},
"devDependencies": {
"fs-extra": "^7.0.1",
"mocha": "^5.2.0"
}
}
|