-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 880 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
{
"name": "action-get-primary-language",
"version": "1.0.0",
"description": "Use the github api to derive the main detected language for the repository",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build src/get-primary-language.js",
"precommit": "npm run build && git add dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fiddlermikey/action-get-primary-language.git"
},
"keywords": [],
"author": "mikey",
"license": "ISC",
"bugs": {
"url": "https://github.com/fiddlermikey/action-get-primary-language/issues"
},
"homepage": "https://github.com/fiddlermikey/action-get-primary-language#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.1.1",
"@vercel/ncc": "^0.36.1"
}
}