-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.12 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": "simplecov-reporter-action",
"version": "0.1.0",
"packageManager": "[email protected]",
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt",
"check": "run-p -c -l -n 'check:*'",
"check:format": "prettier --check .",
"check:lint": "eslint --cache --ext .js,.ts .",
"check:types": "tsc --build --pretty --verbose",
"fix": "run-p -c -l -n 'fix:*'",
"fix:format": "prettier --write .",
"fix:lint": "eslint --fix --cache --ext .js,.ts .",
"test": "ts-node ./test/**/*.ts"
},
"devDependencies": {
"@types/eslint": "^8",
"@types/node": "16",
"@types/prettier": "^2",
"@types/tape": "^4.13.2",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"tape": "^5.5.3",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@actions/core": "^1.9.0",
"@actions/github": "^5.0.3",
"zod": "^3.17.3"
}
}