forked from xmake-io/github-action-setup-xmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.34 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": "github-action-setup-xmake",
"version": "1.0.3",
"description": "Set up your GitHub Actions workflow with a specific version of xmake",
"main": "dist/index.js",
"author": "OpportunityLiu",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/xmake-io/github-action-setup-xmake.git",
"homepage": "https://github.com/xmake-io/github-action-setup-xmake",
"scripts": {
"init": "yarn install && yarn clean",
"watch": "tsc --watch",
"build": "tsc --build ./tsconfig.build.json",
"rebuild": "yarn clean && yarn build",
"clean": "rimraf dist",
"lint": "eslint --fix src/**/*.ts",
"test": "jest",
"release": "yarn rebuild && yarn lint && yarn install --production --no-bin-links"
},
"dependencies": {
"@actions/core": "^1.1.3",
"@actions/exec": "^1.0.1",
"@actions/io": "^1.0.1",
"@actions/tool-cache": "^1.1.2",
"semver": "^7.1.3"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.8",
"@types/semver": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.4",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
}
}