-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 KB
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": "custom-action",
"version": "1.0.0",
"description": "A simple JavaScript action for GitHub workflows.",
"main": "index.js",
"scripts": {
"build": "ncc build -m index.ts --license licenses.txt",
"format": "prettier --write *.ts",
"format-check": "prettier --check *.ts",
"lint": "eslint *.ts",
"lint-fix": "eslint *.ts --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vCaisim/custom-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vCaisim/custom-action/issues"
},
"homepage": "https://github.com/vCaisim/custom-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/http-client": "^2.1.0",
"p-retry": "^5.1.2"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.2.3",
"@typescript-eslint/parser": "^5.59.6",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.41.0",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
}