2020-04-28 16:46:47 +02:00
|
|
|
{
|
|
|
|
|
"name": "codeql",
|
2026-05-12 18:32:59 +01:00
|
|
|
"version": "4.36.0",
|
2020-04-28 16:46:47 +02:00
|
|
|
"private": true,
|
|
|
|
|
"description": "CodeQL action",
|
|
|
|
|
"scripts": {
|
2025-08-22 12:30:55 +01:00
|
|
|
"_build_comment": "echo 'Run the full build so we typecheck the project and can reuse the transpiled files in npm test'",
|
2026-04-10 12:18:17 +01:00
|
|
|
"build": "./scripts/check-node-modules.sh && npm run transpile && node build.mjs",
|
2024-07-16 15:13:51 -07:00
|
|
|
"lint": "eslint --report-unused-disable-directives --max-warnings=0 .",
|
2024-09-09 14:59:49 -07:00
|
|
|
"lint-ci": "SARIF_ESLINT_IGNORE_SUPPRESSED=true eslint --report-unused-disable-directives --max-warnings=0 . --format @microsoft/eslint-formatter-sarif --output-file=eslint.sarif",
|
2025-08-22 12:30:55 +01:00
|
|
|
"lint-fix": "eslint --report-unused-disable-directives --max-warnings=0 . --fix",
|
2026-03-04 12:38:18 +01:00
|
|
|
"ava": "npm run transpile && ava --verbose",
|
2025-09-25 12:27:43 +01:00
|
|
|
"test": "npm run ava -- src/",
|
2025-08-22 12:30:55 +01:00
|
|
|
"test-debug": "npm run test -- --timeout=20m",
|
2026-05-14 17:21:52 +01:00
|
|
|
"transpile": "tsc --build --verbose tsconfig.json",
|
2026-05-14 18:13:20 +01:00
|
|
|
"update-pr-checks": "./pr-checks/sync.sh"
|
2020-04-28 16:46:47 +02:00
|
|
|
},
|
|
|
|
|
"license": "MIT",
|
2026-03-12 19:03:41 +00:00
|
|
|
"workspaces": [
|
|
|
|
|
"pr-checks"
|
|
|
|
|
],
|
2020-04-28 16:46:47 +02:00
|
|
|
"dependencies": {
|
2026-01-28 17:53:24 +00:00
|
|
|
"@actions/artifact": "^5.0.3",
|
2024-10-01 09:59:05 -07:00
|
|
|
"@actions/artifact-legacy": "npm:@actions/artifact@^1.1.2",
|
2026-01-28 17:53:24 +00:00
|
|
|
"@actions/cache": "^5.0.5",
|
|
|
|
|
"@actions/core": "^2.0.3",
|
2025-12-16 13:34:51 +00:00
|
|
|
"@actions/exec": "^2.0.0",
|
2026-02-04 18:51:26 +00:00
|
|
|
"@actions/github": "^8.0.1",
|
2024-11-11 17:44:02 +00:00
|
|
|
"@actions/glob": "^0.5.0",
|
2025-11-03 17:20:38 +00:00
|
|
|
"@actions/http-client": "^3.0.0",
|
2025-11-04 13:58:17 +00:00
|
|
|
"@actions/io": "^2.0.0",
|
2026-01-28 17:53:24 +00:00
|
|
|
"@actions/tool-cache": "^3.0.1",
|
2026-04-13 17:29:04 +00:00
|
|
|
"@octokit/plugin-retry": "^8.1.0",
|
2025-04-04 14:40:53 +01:00
|
|
|
"archiver": "^7.0.1",
|
2021-01-26 15:50:22 +00:00
|
|
|
"fast-deep-equal": "^3.1.3",
|
2026-04-15 12:18:36 +00:00
|
|
|
"follow-redirects": "^1.16.0",
|
2025-08-29 19:03:20 +01:00
|
|
|
"get-folder-size": "^5.0.0",
|
2026-02-09 18:11:10 +00:00
|
|
|
"https-proxy-agent": "^7.0.6",
|
2025-11-15 10:55:57 +00:00
|
|
|
"js-yaml": "^4.1.1",
|
2026-04-13 17:29:04 +00:00
|
|
|
"jsonschema": "1.5.0",
|
2025-04-21 18:01:03 +00:00
|
|
|
"long": "^5.3.2",
|
2026-03-27 10:25:06 +00:00
|
|
|
"node-forge": "^1.4.0",
|
2026-02-18 17:53:34 +00:00
|
|
|
"semver": "^7.7.4",
|
2026-04-22 21:51:48 +00:00
|
|
|
"uuid": "^14.0.0"
|
2020-04-28 16:46:47 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-05-18 18:07:08 +01:00
|
|
|
"@ava/typescript": "6.0.0",
|
2026-04-15 17:58:27 +00:00
|
|
|
"@eslint/compat": "^2.0.5",
|
2024-09-09 13:15:25 -07:00
|
|
|
"@microsoft/eslint-formatter-sarif": "^3.1.0",
|
2025-11-03 17:20:12 +00:00
|
|
|
"@octokit/types": "^16.0.0",
|
2025-11-04 12:19:24 +00:00
|
|
|
"@types/archiver": "^7.0.0",
|
2024-10-10 18:46:18 +01:00
|
|
|
"@types/follow-redirects": "^1.14.4",
|
2023-11-20 14:35:28 -08:00
|
|
|
"@types/js-yaml": "^4.0.9",
|
2026-05-06 17:59:44 +00:00
|
|
|
"@types/node": "^20.19.39",
|
2025-08-29 12:08:22 +01:00
|
|
|
"@types/node-forge": "^1.3.14",
|
2026-03-02 17:41:41 +00:00
|
|
|
"@types/sarif": "^2.1.7",
|
2025-09-08 17:16:35 +00:00
|
|
|
"@types/semver": "^7.7.1",
|
2026-04-13 17:29:04 +00:00
|
|
|
"@types/sinon": "^21.0.1",
|
2026-05-18 18:07:08 +01:00
|
|
|
"ava": "^6.4.1",
|
2026-04-13 17:29:04 +00:00
|
|
|
"esbuild": "^0.28.0",
|
2026-05-06 17:59:44 +00:00
|
|
|
"eslint": "^9.39.4",
|
2026-04-15 17:58:58 +00:00
|
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
2026-02-20 15:57:26 +00:00
|
|
|
"eslint-plugin-github": "^6.0.0",
|
2026-03-25 17:53:49 +00:00
|
|
|
"eslint-plugin-import-x": "^4.16.2",
|
2026-04-08 17:53:21 +00:00
|
|
|
"eslint-plugin-jsdoc": "^62.9.0",
|
2020-09-14 10:32:24 +01:00
|
|
|
"eslint-plugin-no-async-foreach": "^0.1.1",
|
2025-11-18 10:49:13 +00:00
|
|
|
"glob": "^11.1.0",
|
2026-05-13 18:29:17 +00:00
|
|
|
"globals": "^17.6.0",
|
2026-04-13 17:29:04 +00:00
|
|
|
"nock": "^14.0.12",
|
2026-05-14 10:34:00 +00:00
|
|
|
"sinon": "^22.0.0",
|
2026-05-06 17:59:44 +00:00
|
|
|
"typescript": "^6.0.3",
|
2026-05-13 18:29:17 +00:00
|
|
|
"typescript-eslint": "^8.59.2"
|
2021-07-14 14:35:34 -07:00
|
|
|
},
|
2023-04-11 13:33:36 +01:00
|
|
|
"overrides": {
|
2023-07-11 20:48:06 +01:00
|
|
|
"@actions/tool-cache": {
|
|
|
|
|
"semver": ">=6.3.1"
|
|
|
|
|
},
|
2025-03-14 13:13:56 -07:00
|
|
|
"@octokit/request-error": {
|
|
|
|
|
"semver": ">=5.1.1"
|
|
|
|
|
},
|
|
|
|
|
"@octokit/request": {
|
|
|
|
|
"semver": ">=8.4.1"
|
|
|
|
|
},
|
|
|
|
|
"@octokit/plugin-paginate-rest": {
|
|
|
|
|
"semver": ">=9.2.2"
|
|
|
|
|
},
|
2023-07-11 20:48:06 +01:00
|
|
|
"eslint-plugin-import": {
|
|
|
|
|
"semver": ">=6.3.1"
|
|
|
|
|
},
|
|
|
|
|
"eslint-plugin-jsx-a11y": {
|
|
|
|
|
"semver": ">=6.3.1"
|
2025-09-08 10:53:44 +02:00
|
|
|
},
|
2026-03-27 17:32:08 +00:00
|
|
|
"glob": "^11.1.0",
|
|
|
|
|
"undici": "^6.24.0"
|
2020-04-28 16:46:47 +02:00
|
|
|
}
|
2022-03-07 21:02:20 +00:00
|
|
|
}
|