Files
codeql-action/package.json
T

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

108 lines
3.2 KiB
JSON
Raw Normal View History

{
"name": "codeql",
2025-05-16 10:15:17 +00:00
"version": "3.28.19",
"private": true,
"description": "CodeQL action",
"scripts": {
2021-05-07 20:15:12 -04:00
"build": "tsc --build",
2022-02-01 18:01:11 +00:00
"test": "ava src/**.test.ts --serial --verbose",
"test-debug": "ava src/**.test.ts --serial --verbose --timeout=20m",
2024-07-16 15:13:51 -07:00
"lint": "eslint --report-unused-disable-directives --max-warnings=0 .",
"lint-fix": "eslint --report-unused-disable-directives --max-warnings=0 . --fix",
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",
2022-03-22 19:35:19 +00:00
"removeNPMAbsolutePaths": "removeNPMAbsolutePaths . --force"
},
2020-05-04 18:28:01 +01:00
"ava": {
"typescript": {
"rewritePaths": {
"src/": "lib/"
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.0.3",
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",
"@octokit/types": "^14.0.0",
2023-07-24 17:12:49 +00:00
"@schemastore/package": "0.0.10",
2024-07-02 17:12:00 +02:00
"@types/node-forge": "^1.3.11",
2024-06-24 18:07:07 +00:00
"@types/uuid": "^10.0.0",
"archiver": "^7.0.1",
2023-08-07 15:08:26 +01:00
"check-disk-space": "^3.4.0",
"console-log-level": "^1.4.1",
2023-07-13 11:17:33 +01:00
"del": "^6.1.1",
"fast-deep-equal": "^3.1.3",
"file-url": "^3.0.0",
2024-10-10 18:46:18 +01:00
"follow-redirects": "^1.15.9",
"fs": "0.0.1-security",
2022-08-15 14:44:43 +01:00
"get-folder-size": "^2.0.1",
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": "^4.1.3",
"path": "^0.12.7",
"semver": "^7.7.2",
"uuid": "^11.1.0",
"zlib": "^1.0.5"
},
"devDependencies": {
2023-07-13 09:06:22 +00:00
"@ava/typescript": "4.1.0",
2024-07-16 10:11:29 -07:00
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.27.0",
2024-09-09 13:15:25 -07:00
"@microsoft/eslint-formatter-sarif": "^3.1.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",
2022-08-15 14:44:43 +01:00
"@types/get-folder-size": "^2.0.0",
2023-11-20 14:35:28 -08:00
"@types/js-yaml": "^4.0.9",
2023-12-07 14:09:14 +00:00
"@types/node": "20.9.0",
"@types/semver": "^7.7.0",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
2023-07-13 09:06:22 +00:00
"ava": "^5.3.1",
"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",
"nock": "^14.0.4",
2023-07-13 09:06:22 +00:00
"removeNPMAbsolutePaths": "3.0.1",
"sinon": "^20.0.0",
"typescript": "^5.8.3"
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"
2023-08-14 18:59:06 +01:00
}
}
2022-03-07 21:02:20 +00:00
}