-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.61 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
52
53
54
{
"name": "ghas-metrics-report",
"version": "1.0.1",
"description": "A GitHub Action to generate GHAS metrics report",
"main": "main.ts",
"scripts": {
"build": "tsc && ncc build ./src/main.ts -o dist",
"prettier:write": "prettier --write '**/*.ts'",
"prettier:check": "prettier --check '**/*.ts'",
"lint:check": "eslint . --ext .ts",
"lint:write": "eslint --fix . --ext .ts",
"test": "jest --coverage",
"prepare": "husky install",
"start": "yarn run build && node ./dist/index.js",
"local": "yarn run build && act --job regression-local-pat --env-file ./.env --secret-file my.secrets"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/action": "^7.0.0",
"@octokit/plugin-throttling": "5.0.1",
"@octokit/plugin-retry": "4.1.1",
"@vercel/ncc": "^0.36.1",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.5.31",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@octokit/types": "^8.0.0",
"@tsconfig/node18": "^1.0.1",
"@types/jest": "^29.5.1",
"@types/json-schema": "^7.0.11",
"@types/node": "^18.11.15",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.45.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.2",
"jest": "^29.5.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
},
"engines": {
"node": "20"
}
}