forked from himynameisdave/git-labelmaker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "git-labelmaker",
"version": "0.9.0",
"description": "Manage your GitHub labels from the command line!",
"main": "bin/index.js",
"scripts": {
"start": "./bin/index.js",
"test": "jest --verbose --coverage --no-cache",
"test-coverage": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint ./bin/ --no-cache",
"precommit": "npm run lint && npm run test",
"prepublish": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/himynameisdave/git-labelmaker.git"
},
"bin": {
"git-labelmaker": "bin/index.js"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.9.0"
},
"preferGlobal": true,
"keywords": [
"git",
"labels",
"git-label",
"github",
"projects"
],
"author": "himynameisdave",
"license": "MIT",
"bugs": {
"url": "https://github.com/himynameisdave/git-labelmaker/issues"
},
"homepage": "https://github.com/himynameisdave/git-labelmaker#readme",
"dependencies": {
"buttercup": "~0.24.0",
"git-label": "^4.1.1",
"github-url-from-git": "^1.5.0",
"inquirer": "^0.11.1",
"octonode": "^0.7.4",
"parse-git-config": "^1.1.1",
"rgb-hex": "^2.1.0",
"string": "^3.3.3"
},
"devDependencies": {
"coveralls": "^2.13.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.2",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.13.3",
"jest": "^19.0.2"
}
}