-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 797 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 797 Bytes
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
{
"name": "github-issues-summary",
"version": "0.0.1",
"description": "Provides a summary of opened GitHub issues by label and repository",
"author": "Olivier Bieler",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/obieler/github-issues-summary.git"
},
"main": "src/index.js",
"bin": "src/cli.js",
"files": [
"src/cli.js"
],
"scripts": {
"test": "eslint ."
},
"dependencies": {
"got": "^9.6.0",
"chalk": "^3.0.0",
"jsonfile": "^5.0.0",
"yargs": "^15.0.2"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}