-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 958 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
34
{
"name": "github-org-member-email-report-action",
"version": "2.0.0",
"description": "A GitHub Action to generate a report retrieving member email addresses from a GitHub cloud organization where possible.",
"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",
"repository": "github:nicklegan/github-org-member-email-action",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"main": "index.js",
"scripts": {
"build": "npx @vercel/ncc build index.js --out dist --license licenses.txt --quiet --minify"
},
"dependencies": {
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3",
"@octokit/auth-app": "^3.6.1",
"csv": "^6.1.0",
"natural-orderby": "^2.0.3"
}
}