-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 828 Bytes
/
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
{
"name": "simple-watcher",
"version": "5.0.1",
"description": "\"A simple file s watcher.\"",
"type": "module",
"main": "index.js",
"bin": {
"simple-watcher": "./bin/simple-watcher.js"
},
"scripts": {
"test": "node ./test/test.js -v",
"bin": "node ./bin/simple-watcher.js"
},
"engines": {
"node": ">=16.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gavoja/simple-watcher.git"
},
"keywords": [
"file",
"system",
"directory",
"recursive",
"watch",
"watcher"
],
"author": "Michal Kochel",
"license": "MIT",
"bugs": {
"url": "https://github.com/gavoja/simple-watcher/issues"
},
"homepage": "https://github.com/gavoja/simple-watcher#readme",
"devDependencies": {
"fs-extra": "10.1.0",
"triala": "0.4.0"
}
}