generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
43
{
"name": "setup-custom-tool",
"version": "2.0.0",
"private": true,
"description": "Download and unpack a tool of your choice",
"main": "lib/main.js",
"scripts": {
"lint": "eslint --ext .ts --fix src",
"clean": "rm -rf lib coverage",
"build": "tsc",
"dist": "ncc build",
"test": "jest",
"all": "yarn lint && yarn clean && yarn build && yarn dist && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alex079/setup-custom-tool.git"
},
"keywords": [
"actions",
"tool",
"setup"
],
"author": "Alex079",
"license": "MIT",
"devDependencies": {
"@actions/core": "^1",
"@actions/glob": "^0",
"@actions/tool-cache": "^2",
"@types/jest": "^29",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@vercel/ncc": "^0",
"eslint": "^8",
"eslint-plugin-jest": "^27",
"jest": "^29",
"jest-circus": "^29",
"js-yaml": "^4",
"ts-jest": "^29",
"typescript": "^5"
}
}