-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
{
"name": "git-label-cli",
"description": "CLI utility for git-label",
"version": "3.0.0",
"homepage": "https://github.com/jasonbellamy",
"author": {
"name": "Jason Bellamy",
"email": "j@sonbellamy.com",
"url": "http://jasonbellamy.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jasonbellamy/git-label-cli.git"
},
"bugs": {
"url": "https://github.com/jasonbellamy/git-label-cli/issues"
},
"license": "MIT",
"bin": {
"git-label": "dist/index.js"
},
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"build": "babel -d dist src",
"clean": "rm -rf dist && mkdir dist",
"watch": "babel -w -d dist src",
"preversion": "npm run clean && npm run build",
"postpublish": "git push && git push --tag"
},
"dependencies": {
"commander": "^2.9.0",
"git-label": "^4.1.0",
"glob": "^6.0.3",
"inquirer": "^0.11.1"
},
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.1.18",
"babel-register": "^6.2.0"
},
"keywords": [
"cli",
"labels",
"github",
"git",
"utils"
]
}