-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.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
33
34
35
36
37
38
{
"name": "setup-multiwerf",
"version": "0.1.0",
"description": "Github action to install multiwerf",
"main": "dist/index.js",
"repository": "https://github.com/SmartsquareGmbH/setup-multiwerf",
"author": "Ruben Gees",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"build": "ncc build src/index.ts --license LICENSE.txt --target es2015 --minify",
"lint": "eslint --ext .js,.ts src --max-warnings 0",
"lint:fix": "yarn lint --fix",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/tool-cache": "^1.6.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/semver": "^7.3.5",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"@vercel/ncc": "^0.28.5",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"semver": "^7.3.5",
"tmp-promise": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}