-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.36 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
55
56
57
58
{
"name": "wip",
"version": "1.3.0",
"description": "command line utilities to better manage WIP (Work In Progress) with Git",
"bin": {
"wip": "./bin/wip",
"naenae": "./bin/naenae"
},
"man": [
"./man/wip.1",
"./man/naenae.1"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watch wip --ignoreDotFiles"
},
"author": "Jason Dreyzehner <[email protected]>",
"license": "MIT",
"dependencies": {
"boxen": "^0.5.0",
"chalk": "^1.1.1",
"configstore": "^2.0.0",
"play-sound": "0.0.7",
"update-notifier": "^0.6.1"
},
"repository": {
"type": "git",
"url": "git://github.com/bitjson/wip.git"
},
"devDependencies": {
"cz-conventional-changelog": "^1.1.5",
"ghooks": "^1.0.3",
"validate-commit-msg": "^2.2.0",
"watch": "^0.17.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"helpMessage": "\nThis project uses commitizen to document changes. Please try:\nnpm install commitizen -g && git cz\n"
}
},
"keywords": [
"cli",
"git",
"naenae",
"wip"
],
"bugs": {
"url": "https://github.com/bitjson/wip/issues"
},
"homepage": "https://github.com/bitjson/wip",
"main": "index.js"
}