-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "get-issues",
"version": "1.9.0",
"description": "cli that downloads all github issues from project for offline use",
"scripts": {
"pretest": "standard",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npm run git:add && npm run git:message && npm run git:push && npm run npm:bump && npm run npm:publish",
"git:add": "git add .",
"git:message": "git commit -m 'update gh-issues' ",
"git:push": "git push origin master",
"npm:bump": "npm version patch",
"npm:publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pippinlee/get-issues.git"
},
"keywords": [
"git",
"issues",
"offline",
"github",
"local"
],
"author": "@pippinlee",
"license": "ISC",
"bugs": {
"url": "https://github.com/pippinlee/get-issues/issues"
},
"homepage": "https://github.com/pippinlee/get-issues#readme",
"bin": {
"get-issues": "src/index.js"
},
"dependencies": {
"async": "^1.5.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"figlet": "^1.1.1",
"fs-extra": "^0.26.2",
"git-tools": "^0.2.1",
"github4": "^0.4.0",
"inquirer": "^0.11.0",
"ssh-url": "^0.1.5",
"urlify": "^0.3.6"
}
}