-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 913 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
40
41
{
"name": "watch-util",
"version": "1.0.4",
"description": "Versatile watcher lib and shell commands for watching files, running and restarting shell commands",
"keywords": [
"watch",
"watcher",
"glob",
"md5",
"queue",
"parallel",
"exec",
"restart",
"shell",
"fs",
"kill"
],
"main": "index.js",
"bin": {
"watch-exec": "bin/watch-exec",
"watch-restart": "bin/watch-restart"
},
"scripts": {
"test": "mocha test/test.js --colors --bail --timeout 5000"
},
"repository": "git://github.com/wlodzislav/watch-util.git",
"author": "Vladislav Kaminsky <wlodzislav@ya.ru>",
"license": "MIT",
"devDependencies": {
"mocha": "^6.0.0",
"rimraf": "^2.6.3",
"touch": "^3.1.0"
},
"dependencies": {
"async": "^2.5.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"glob": "^7.1.2",
"kill-with-style": "^1.1.0"
}
}