-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.05 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": "watch-cli",
"description": "Command line wrapper for gaze to use in package.json scripts object.",
"version": "0.2.3",
"homepage": "https://github.com/doowb/watch-cli",
"author": {
"name": "Brian Woodward",
"url": "https://github.com/doowb"
},
"repository": {
"type": "git",
"url": "git://github.com/doowb/watch-cli.git"
},
"bugs": {
"url": "https://github.com/doowb/watch-cli/issues"
},
"license": {
"type": "MIT",
"url": "https://github.com/doowb/watch-cli/blob/master/LICENSE"
},
"files": [
"index.js",
"bin/"
],
"main": "index.js",
"bin": {
"watch": "bin/watch"
},
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"gaze": "^0.5.1",
"lodash": "^3.5.0",
"minimist": "^1.1.1",
"supports-color": "^4.0.0",
"verbalize": "^0.1.2"
},
"keywords": [
"docs",
"documentation",
"generate",
"generator",
"markdown",
"templates",
"verb"
],
"devDependencies": {
"mocha": "^2.2.1"
}
}