forked from DeLaGuardo/setup-graalvm
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.07 KB
/
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
35
36
37
38
39
40
41
42
{
"name": "setup-graalvm",
"version": "1.0.0",
"private": true,
"description": "setup graalvm action",
"main": "lib/setup-graalvm.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map",
"all": "npm run build && npm run format && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluonhq/setup-graalvm.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Joeri Sykora <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.1",
"@octokit/action": "^3.7.1"
},
"devDependencies": {
"@types/node": "^14.14.34",
"@types/semver": "^7.3.4",
"@vercel/ncc": "^0.26.2",
"eslint": "^7.22.0",
"eslint-plugin-github": "^4.1.2",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}