-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
40 lines (40 loc) · 858 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
{
"name": "watch",
"description": "Utilities for watching file trees.",
"scripts": {
"release:major": "bash scripts/release.sh major",
"release:minor": "bash scripts/release.sh minor",
"release:patch": "bash scripts/release.sh patch"
},
"keywords": [
"util",
"utility",
"fs",
"files"
],
"bin": {
"watch": "./cli.js"
},
"version": "1.0.2",
"homepage": "https://github.com/mikeal/watch",
"bugs": {
"url": "https://github.com/mikeal/watch/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/mikeal/watch.git"
},
"author": "Mikeal Rogers <[email protected]>",
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=0.1.95"
},
"main": "./main",
"dependencies": {
"exec-sh": "^0.2.0",
"minimist": "^1.2.0"
}
}