-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 888 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": "github-actions-starter",
"version": "0.1.0",
"description": "GitHub Actions starter for a Node.js based Action with automated releases",
"main": "dist/index.js",
"scripts": {
"lint": "eslint ./src",
"start": "node src/index.js",
"build": "ncc build src/index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betahuhn/github-actions-starter.git"
},
"keywords": [],
"author": "Maximilian Schiller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/betahuhn/github-actions-starter/issues"
},
"homepage": "https://github.com/marketplace/actions/github-actions-starter",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@betahuhn/config": "^1.2.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^7.32.0"
}
}