2020-04-28 17:46:47 +03:00
|
|
|
{
|
|
|
|
"name": "codeql",
|
2024-11-12 22:22:10 +03:00
|
|
|
"version": "3.27.4",
|
2020-04-28 17:46:47 +03:00
|
|
|
"private": true,
|
|
|
|
"description": "CodeQL action",
|
|
|
|
"scripts": {
|
2021-05-08 03:15:12 +03:00
|
|
|
"build": "tsc --build",
|
2022-02-01 21:01:11 +03:00
|
|
|
"test": "ava src/**.test.ts --serial --verbose",
|
|
|
|
"test-debug": "ava src/**.test.ts --serial --verbose --timeout=20m",
|
2024-07-17 01:13:51 +03:00
|
|
|
"lint": "eslint --report-unused-disable-directives --max-warnings=0 .",
|
|
|
|
"lint-fix": "eslint --report-unused-disable-directives --max-warnings=0 . --fix",
|
2024-09-10 00:59:49 +03: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 22:35:19 +03:00
|
|
|
"removeNPMAbsolutePaths": "removeNPMAbsolutePaths . --force"
|
2020-04-28 17:46:47 +03:00
|
|
|
},
|
2020-05-04 20:28:01 +03:00
|
|
|
"ava": {
|
|
|
|
"typescript": {
|
|
|
|
"rewritePaths": {
|
|
|
|
"src/": "lib/"
|
2021-08-11 14:22:47 +03:00
|
|
|
},
|
|
|
|
"compile": false
|
2020-05-04 20:28:01 +03:00
|
|
|
}
|
|
|
|
},
|
2020-04-28 17:46:47 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2024-10-01 19:59:05 +03:00
|
|
|
"@actions/artifact": "^2.1.9",
|
|
|
|
"@actions/artifact-legacy": "npm:@actions/artifact@^1.1.2",
|
2024-11-11 20:44:02 +03:00
|
|
|
"@actions/cache": "^3.3.0",
|
2024-10-05 01:21:50 +03:00
|
|
|
"@actions/core": "^1.11.1",
|
2022-10-13 23:25:43 +03:00
|
|
|
"@actions/exec": "^1.1.1",
|
2023-07-13 13:17:33 +03:00
|
|
|
"@actions/github": "^5.1.1",
|
2024-11-11 20:44:02 +03:00
|
|
|
"@actions/glob": "^0.5.0",
|
2023-07-13 12:06:22 +03:00
|
|
|
"@actions/io": "^1.1.3",
|
2022-10-13 23:25:43 +03:00
|
|
|
"@actions/tool-cache": "^2.0.1",
|
2020-11-19 00:14:45 +03:00
|
|
|
"@chrisgavin/safe-which": "^1.0.2",
|
2023-06-13 22:39:20 +03:00
|
|
|
"@octokit/plugin-retry": "^5.0.2",
|
2024-10-08 17:50:04 +03:00
|
|
|
"@octokit/types": "^13.6.1",
|
2023-07-24 20:12:49 +03:00
|
|
|
"@schemastore/package": "0.0.10",
|
2024-07-02 18:12:00 +03:00
|
|
|
"@types/node-forge": "^1.3.11",
|
2024-06-24 21:07:07 +03:00
|
|
|
"@types/uuid": "^10.0.0",
|
2024-09-02 20:33:29 +03:00
|
|
|
"adm-zip": "^0.5.16",
|
2023-08-07 17:08:26 +03:00
|
|
|
"check-disk-space": "^3.4.0",
|
2020-04-28 17:46:47 +03:00
|
|
|
"console-log-level": "^1.4.1",
|
2023-07-13 13:17:33 +03:00
|
|
|
"del": "^6.1.1",
|
2021-01-26 18:50:22 +03:00
|
|
|
"fast-deep-equal": "^3.1.3",
|
2020-04-28 17:46:47 +03:00
|
|
|
"file-url": "^3.0.0",
|
2024-10-10 20:46:18 +03:00
|
|
|
"follow-redirects": "^1.15.9",
|
2020-04-28 17:46:47 +03:00
|
|
|
"fs": "0.0.1-security",
|
2022-08-15 16:44:43 +03:00
|
|
|
"get-folder-size": "^2.0.1",
|
2021-07-27 21:59:42 +03:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-05-03 00:26:17 +03:00
|
|
|
"jsonschema": "1.4.1",
|
2023-07-13 12:06:22 +03:00
|
|
|
"long": "^5.2.3",
|
2024-07-02 18:12:00 +03:00
|
|
|
"node-forge": "^1.3.1",
|
2020-04-28 17:46:47 +03:00
|
|
|
"path": "^0.12.7",
|
2024-07-22 20:57:47 +03:00
|
|
|
"semver": "^7.6.3",
|
2024-11-11 20:44:02 +03:00
|
|
|
"uuid": "^11.0.3",
|
2020-04-28 17:46:47 +03:00
|
|
|
"zlib": "^1.0.5"
|
|
|
|
},
|
2020-05-04 20:50:13 +03:00
|
|
|
"//": [
|
|
|
|
"micromatch is an unspecified dependency of ava"
|
|
|
|
],
|
2020-04-28 17:46:47 +03:00
|
|
|
"devDependencies": {
|
2023-07-13 12:06:22 +03:00
|
|
|
"@ava/typescript": "4.1.0",
|
2024-07-16 20:11:29 +03:00
|
|
|
"@eslint/compat": "^1.1.1",
|
|
|
|
"@eslint/eslintrc": "^3.1.0",
|
2024-11-11 20:44:02 +03:00
|
|
|
"@eslint/js": "^9.14.0",
|
2024-09-09 23:15:25 +03:00
|
|
|
"@microsoft/eslint-formatter-sarif": "^3.1.0",
|
2024-11-11 20:44:02 +03:00
|
|
|
"@types/adm-zip": "^0.5.6",
|
2024-06-13 21:37:56 +03:00
|
|
|
"@types/console-log-level": "^1.4.5",
|
2024-10-10 20:46:18 +03:00
|
|
|
"@types/follow-redirects": "^1.14.4",
|
2022-08-15 16:44:43 +03:00
|
|
|
"@types/get-folder-size": "^2.0.0",
|
2023-11-21 01:35:28 +03:00
|
|
|
"@types/js-yaml": "^4.0.9",
|
2023-12-13 19:43:54 +03:00
|
|
|
"@types/node": "16.11.22",
|
2024-02-26 21:06:43 +03:00
|
|
|
"@types/semver": "^7.5.8",
|
2024-01-10 20:38:00 +03:00
|
|
|
"@types/sinon": "^17.0.3",
|
2024-11-11 20:44:02 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.14.0",
|
|
|
|
"@typescript-eslint/parser": "^8.14.0",
|
2023-07-13 12:06:22 +03:00
|
|
|
"ava": "^5.3.1",
|
2024-09-16 20:28:50 +03:00
|
|
|
"eslint": "^8.57.1",
|
2024-08-26 20:12:50 +03:00
|
|
|
"eslint-import-resolver-typescript": "^3.6.3",
|
2020-09-14 12:32:24 +03:00
|
|
|
"eslint-plugin-filenames": "^1.3.2",
|
2024-09-16 20:28:50 +03:00
|
|
|
"eslint-plugin-github": "^5.0.2",
|
2024-10-02 05:18:59 +03:00
|
|
|
"eslint-plugin-import": "2.29.1",
|
2020-09-14 12:32:24 +03:00
|
|
|
"eslint-plugin-no-async-foreach": "^0.1.1",
|
2024-08-24 02:00:06 +03:00
|
|
|
"micromatch": "4.0.8",
|
2024-11-11 20:44:02 +03:00
|
|
|
"nock": "^13.5.6",
|
2023-07-13 12:06:22 +03:00
|
|
|
"removeNPMAbsolutePaths": "3.0.1",
|
2024-09-16 20:28:50 +03:00
|
|
|
"sinon": "^19.0.2",
|
2024-10-14 20:28:42 +03:00
|
|
|
"typescript": "^5.6.3"
|
2021-07-15 00:35:34 +03:00
|
|
|
},
|
2023-04-11 15:33:36 +03:00
|
|
|
"overrides": {
|
2023-07-11 22:48:06 +03:00
|
|
|
"@actions/tool-cache": {
|
|
|
|
"semver": ">=6.3.1"
|
|
|
|
},
|
|
|
|
"eslint-plugin-import": {
|
|
|
|
"semver": ">=6.3.1"
|
|
|
|
},
|
|
|
|
"eslint-plugin-jsx-a11y": {
|
|
|
|
"semver": ">=6.3.1"
|
2023-08-14 20:59:06 +03:00
|
|
|
}
|
2020-04-28 17:46:47 +03:00
|
|
|
}
|
2024-05-08 15:45:33 +03:00
|
|
|
}
|