forked from asdf-vm/actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1 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
{
"name": "@asdf-vm/actions",
"version": "1.0.1",
"description": "asdf github actions",
"repository": "https://github.com/asdf-vm/actions",
"author": "Victor Borja <vborja@apache.org>",
"license": "Apache-2.0",
"scripts": {
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"typecheck": "tsc",
"lint": "eslint \"**/*.ts\" --cache",
"build": "esbuild lib/install/main.ts lib/plugin-test/main.ts lib/plugins-add/main.ts lib/setup/main.ts --bundle --outdir=. --target=node12 --platform=node"
},
"dependencies": {
"@actions/core": "1.2.6",
"@actions/exec": "1.0.4",
"@actions/github": "4.0.0",
"@actions/io": "1.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.23.0",
"@typescript-eslint/parser": "4.23.0",
"esbuild": "0.8.34",
"eslint": "7.20.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.3.1",
"prettier": "2.2.1",
"typescript": "4.2.4"
}
}