-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 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
43
44
45
46
47
48
49
50
51
{
"name": "action",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "node ./build.mjs",
"format": "prettier --check .",
"format:fix": "prettier --write --list-different .",
"lint": "eslint \"**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:coverage": "npm test -- --coverage",
"test:ci": "npm test -- --ci --coverage",
"ci": "run-s lint format build test:ci"
},
"pre-commit": [
"lint:fix",
"format:fix",
"build"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@shigen/polyfill-symbol-dispose": "1.0.1",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"esbuild": "0.21.5",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"jest-extended": "4.0.2",
"msw": "2.3.1",
"npm-run-all": "4.1.5",
"pre-commit": "1.2.2",
"prettier": "3.3.2",
"ts-jest": "29.1.5",
"ts-node": "10.9.2"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/http-client": "2.2.1",
"@actions/tool-cache": "2.0.1"
}
}