Files
codeql-action/package.json
T

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

105 lines
3.2 KiB
JSON
Raw Normal View History

{
"name": "codeql",
2025-09-25 10:19:26 +00:00
"version": "3.30.5",
"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": "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",
2025-09-20 13:44:02 +01:00
"test": "npm run transpile && ava src/ --serial --verbose",
"test-debug": "npm run test -- --timeout=20m",
"transpile": "tsc --build --verbose"
},
2020-05-04 18:28:01 +01:00
"ava": {
"typescript": {
"rewritePaths": {
"src/": "build/"
2021-08-11 12:22:47 +01:00
},
"compile": false
2020-05-04 18:28:01 +01:00
}
},
"license": "MIT",
"dependencies": {
2025-03-14 13:13:56 -07:00
"@actions/artifact": "^2.3.1",
"@actions/artifact-legacy": "npm:@actions/artifact@^1.1.2",
"@actions/cache": "^4.1.0",
2024-10-04 15:21:50 -07:00
"@actions/core": "^1.11.1",
2022-10-13 13:25:43 -07:00
"@actions/exec": "^1.1.1",
2025-03-14 13:13:56 -07:00
"@actions/github": "^6.0.0",
"@actions/glob": "^0.5.0",
"@actions/http-client": "^2.2.3",
2023-07-13 09:06:22 +00:00
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2",
2025-03-14 13:13:56 -07:00
"@octokit/plugin-retry": "^6.0.0",
2023-07-24 17:12:49 +00:00
"@schemastore/package": "0.0.10",
"archiver": "^7.0.1",
2023-08-07 15:08:26 +01:00
"check-disk-space": "^3.4.0",
"console-log-level": "^1.4.1",
2025-08-29 19:22:46 +01:00
"del": "^8.0.0",
"fast-deep-equal": "^3.1.3",
2025-08-04 22:25:25 +00:00
"follow-redirects": "^1.15.11",
2025-08-29 19:03:20 +01:00
"get-folder-size": "^5.0.0",
2021-07-27 18:59:42 +00:00
"js-yaml": "^4.1.0",
2023-05-02 14:26:17 -07:00
"jsonschema": "1.4.1",
"long": "^5.3.2",
2024-07-02 17:12:00 +02:00
"node-forge": "^1.3.1",
"octokit": "^5.0.3",
"semver": "^7.7.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@ava/typescript": "6.0.0",
2025-09-24 10:13:41 +00:00
"@eslint/compat": "^1.4.0",
"@eslint/eslintrc": "^3.3.1",
2025-09-22 17:07:06 +00:00
"@eslint/js": "^9.36.0",
2024-09-09 13:15:25 -07:00
"@microsoft/eslint-formatter-sarif": "^3.1.0",
2025-09-22 17:07:06 +00:00
"@octokit/types": "^15.0.0",
"@types/archiver": "^6.0.3",
2024-06-13 19:37:56 +01:00
"@types/console-log-level": "^1.4.5",
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",
2025-08-05 10:45:17 +01:00
"@types/node": "20.19.9",
2025-08-29 12:08:22 +01:00
"@types/node-forge": "^1.3.14",
2025-09-08 17:16:35 +00:00
"@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4",
2025-09-24 10:13:41 +00:00
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.41.0",
2025-07-14 19:47:57 +00:00
"ava": "^6.4.1",
2025-09-22 17:07:06 +00:00
"esbuild": "^0.25.10",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.8.7",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-github": "^5.1.8",
2024-10-01 19:18:59 -07:00
"eslint-plugin-import": "2.29.1",
"eslint-plugin-no-async-foreach": "^0.1.1",
2025-08-21 13:34:13 +01:00
"glob": "^11.0.3",
2025-08-18 23:57:10 +00:00
"nock": "^14.0.10",
"sinon": "^21.0.0",
2025-08-04 22:25:25 +00:00
"typescript": "^5.9.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"
},
"brace-expansion@2.0.1": "2.0.2"
}
2022-03-07 21:02:20 +00:00
}