-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
71 lines (71 loc) · 2.14 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "codeql-query",
"version": "1.0.7",
"private": true,
"description": "CodeQL query action",
"scripts": {
"build": "node build.mjs",
"watch": "node build.mjs --watch",
"test": "jest",
"lint": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts",
"lint-fix": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts --fix",
"find-deadcode": "ts-node script/find-deadcode.ts"
},
"license": "MIT",
"engines": {
"node": "^20.0.0"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/http-client": "^2.2.3",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@octokit/action": "^7.0.0",
"@octokit/plugin-retry": "^7.1.2",
"@octokit/plugin-throttling": "^9.3.2",
"ajv": "8.17.1",
"form-data": "^4.0.1",
"jszip": "3.10.1",
"semver": "^7.6.3",
"uuid": "^11.0.3",
"yaml": "^2.6.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@octokit/types": "^13.6.2",
"@types/archiver": "^6.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.10",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"archiver": "^7.0.1",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-github": "^5.1.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-async-foreach": "^0.1.1",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-json-schema-generator": "2.3.0",
"ts-node": "^10.9.2",
"ts-unused-exports": "^11.0.1",
"typescript": "^5.7.2"
},
"resolutions": {
"glob-parent": ">=5.1.2",
"normalize-url": ">=4.5.1"
}
}