forked from peter-murray/inactive-users-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 793 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
{
"name": "inactive-users-action",
"version": "1.0.0",
"description": "GitHub Action for getting inactive organization members",
"main": "index.js",
"scripts": {
"build": "ncc build index.js",
"test": "mocha ./src/**/*.test.js"
},
"keywords": [
"github",
"organizations",
"inactive users",
"users"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/io": "^1.0.2",
"@octokit/plugin-retry": "^3.0.4",
"@octokit/plugin-throttling": "^3.3.3",
"@octokit/rest": "^18.0.9",
"json2csv": "^5.0.4"
},
"devDependencies": {
"@vercel/ncc": "^0.25.1",
"chai": "^4.2.0",
"mocha": "^8.2.1"
}
}