-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.34 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": "git-issues-downloader",
"version": "0.1.4",
"main": "app.js",
"license": "MIT",
"scripts": {
"start": "node app.js ; exit 0",
"test": "nyc --reporter=lcov mocha",
"coverage": "codecov",
"lint": "standard",
"lint:fix": "standard --fix"
},
"standard": {
"env": [
"mocha"
]
},
"dependencies": {
"chalk": "^2.3.2",
"lodash": "^4.17.15",
"moment": "^2.18.1",
"read": "^1.0.7",
"request": "^2.88.0",
"yargs": "^13.2.2"
},
"bin": {
"git-issues-downloader": "app.js"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.3.0",
"mocha": "^6.1.4",
"nyc": "^14.1.0",
"sinon": "^7.3.2",
"standard": "^12.0.1"
},
"description": "Command line application allowing you to download all issues in the CSV format from the public or private GitHub repository",
"repository": "[email protected]:remoteorigin/git-issues-downloader.git",
"author": "Pavel Binar <[email protected]> (https://remoteorigin.com/)",
"bugs:": {
"url": "https://github.com/remoteorigin/git-issues-downloader/issues"
},
"homepage": "https://github.com/remoteorigin/git-issues-downloader",
"keywords": [
"git",
"github",
"issues",
"tickets",
"download",
"downloader",
"save",
"csv",
"export",
"offline",
"local",
"cli"
]
}