-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 921 Bytes
/
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
{
"name": "github-enterprise-user-totals-report-action",
"version": "1.0.0",
"description": "Generate reports for every GitHub organization with all owners, members and outside collaborators",
"author": {
"name": "GitHub Expert Services",
"email": "services@github.com",
"url": "https://services.github.com"
},
"contributors": [
{
"name": "Nick Nagel",
"email": "nicklegan@github.com",
"url": "https://github.com/nicklegan"
}
],
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "npx @vercel/ncc build index.js --out dist --license licenses.txt --quiet --minify"
},
"repository": "github:nicklegan/github-enterprise-user-totals-report-action",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"csv": "^6.2.3",
"natural-orderby": "^3.0.1"
}
}