-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 942 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 942 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
34
35
36
{
"name": "github-org-reporter",
"version": "1.0.0",
"description": "Generate reports with statistics from github organizations",
"main": "index.mjs",
"bin": {
"github-org-reporter": "./index.mjs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["github","stats","report","org"],
"bugs": {
"url": "https://github.com/densebrain/github-org-reporter/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/densebrain/github-org-reporter.git"
},
"author": "Jonathan Glanz",
"license": "MIT",
"dependencies": {
"@octokit/plugin-retry": "^2.2.0",
"@octokit/rest": "^16.24.1",
"exceljs": "^1.9.0",
"lodash": "^4.17.11",
"shelljs": "^0.8.3",
"yargs": "^13.2.2"
},
"devDependencies": {
"@types/exceljs": "^0.5.3",
"@types/lodash": "^4.14.123",
"@types/shelljs": "^0.8.5",
"@types/yargs": "^13.0.0"
}
}