-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 991 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-code-frequency-action",
"version": "2.1.0",
"description": "A GitHub Action to generate a report that contains code frequency metrics and programming languages used per repository belonging to a GitHub organization.",
"author": {
"name": "GitHub Expert Services",
"email": "[email protected]",
"url": "https://services.github.com"
},
"contributors": [
{
"name": "Nick Nagel",
"email": "[email protected]",
"url": "https://github.com/nicklegan"
}
],
"repository": "github:nicklegan/github-org-code-frequency-action",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "npx @vercel/ncc build index.js --out dist --license licenses.txt --quiet --minify"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"@octokit/auth-app": "^4.0.5",
"csv": "^6.2.0",
"natural-orderby": "^2.0.3"
}
}