Files
codeql-action/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

97 lines
3.0 KiB
JSON
Raw Normal View History

{
"name": "codeql",
2026-05-12 18:32:59 +01:00
"version": "4.36.0",
"private": true,
"description": "CodeQL action",
"scripts": {
"_build_comment": "echo 'Run the full build so we typecheck the project and can reuse the transpiled files in npm test'",
"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",
"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",
"test": "npm run ava -- src/",
"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"
},
"license": "MIT",
2026-03-12 19:03:41 +00:00
"workspaces": [
"pr-checks"
],
"dependencies": {
2026-01-28 17:53:24 +00:00
"@actions/artifact": "^5.0.3",
"@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",
"@actions/exec": "^2.0.0",
"@actions/github": "^8.0.1",
"@actions/glob": "^0.5.0",
"@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",
"@octokit/plugin-retry": "^8.1.0",
"archiver": "^7.0.1",
"fast-deep-equal": "^3.1.3",
"follow-redirects": "^1.16.0",
2025-08-29 19:03:20 +01:00
"get-folder-size": "^5.0.0",
"https-proxy-agent": "^7.0.6",
2025-11-15 10:55:57 +00:00
"js-yaml": "^4.1.1",
"jsonschema": "1.5.0",
"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"
},
"devDependencies": {
2026-05-18 18:07:08 +01:00
"@ava/typescript": "6.0.0",
"@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",
"@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",
"@types/sinon": "^21.0.1",
2026-05-18 18:07:08 +01:00
"ava": "^6.4.1",
"esbuild": "^0.28.0",
"eslint": "^9.39.4",
"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",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-no-async-foreach": "^0.1.1",
2025-11-18 10:49:13 +00:00
"glob": "^11.1.0",
"globals": "^17.6.0",
"nock": "^14.0.12",
2026-05-14 10:34:00 +00:00
"sinon": "^22.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2"
2021-07-14 14:35:34 -07: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"
},
2026-03-27 17:32:08 +00:00
"glob": "^11.1.0",
"undici": "^6.24.0"
}
2022-03-07 21:02:20 +00:00
}