Files
codeql-action/package.json
T

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

98 lines
2.8 KiB
JSON
Raw Normal View History

{
"name": "codeql",
2024-08-29 10:33:09 +00:00
"version": "3.26.7",
"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 13:15:25 -07:00
"lint-ci": "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": {
2023-09-18 20:01:16 +00:00
"@actions/artifact": "^1.1.2",
2024-02-06 02:57:43 -08:00
"@actions/cache": "^3.2.4",
2023-09-18 20:01:16 +00:00
"@actions/core": "^1.10.1",
2022-10-13 13:25:43 -07:00
"@actions/exec": "^1.1.1",
2023-07-13 11:17:33 +01:00
"@actions/github": "^5.1.1",
2023-07-13 09:06:22 +00:00
"@actions/io": "^1.1.3",
2022-10-13 13:25:43 -07:00
"@actions/tool-cache": "^2.0.1",
"@chrisgavin/safe-which": "^1.0.2",
"@octokit/plugin-retry": "^5.0.2",
"@octokit/types": "^13.5.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",
2024-09-02 17:33:29 +00:00
"adm-zip": "^0.5.16",
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",
"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",
2023-07-13 09:06:22 +00:00
"long": "^5.2.3",
2024-07-02 17:12:00 +02:00
"node-forge": "^1.3.1",
"path": "^0.12.7",
2024-07-22 17:57:47 +00:00
"semver": "^7.6.3",
2024-06-10 18:17:38 +00:00
"uuid": "^10.0.0",
"zlib": "^1.0.5"
},
2020-05-04 18:50:13 +01:00
"//": [
"micromatch is an unspecified dependency of ava"
],
"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.1.0",
2024-08-26 17:12:50 +00:00
"@eslint/js": "^9.9.1",
2024-09-09 13:15:25 -07:00
"@microsoft/eslint-formatter-sarif": "^3.1.0",
2023-11-27 19:00:06 +00:00
"@types/adm-zip": "^0.5.5",
2024-06-13 19:37:56 +01:00
"@types/console-log-level": "^1.4.5",
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",
2024-02-26 18:06:43 +00:00
"@types/semver": "^7.5.8",
2024-01-10 17:38:00 +00:00
"@types/sinon": "^17.0.3",
2024-09-02 17:33:29 +00:00
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
2023-07-13 09:06:22 +00:00
"ava": "^5.3.1",
2024-02-26 18:06:43 +00:00
"eslint": "^8.57.0",
2024-08-26 17:12:50 +00:00
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-filenames": "^1.3.2",
2024-06-10 18:17:38 +00:00
"eslint-plugin-github": "^5.0.1",
2023-12-18 10:52:32 -08:00
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-async-foreach": "^0.1.1",
"micromatch": "4.0.8",
2024-08-26 17:12:50 +00:00
"nock": "^13.5.5",
2023-07-13 09:06:22 +00:00
"removeNPMAbsolutePaths": "3.0.1",
2024-05-20 12:17:29 -07:00
"sinon": "^18.0.0",
2024-07-29 17:48:05 +00:00
"typescript": "^5.5.4"
2021-07-14 14:35:34 -07:00
},
"overrides": {
2023-07-11 20:48:06 +01: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 18:59:06 +01:00
}
}
2022-03-07 21:02:20 +00:00
}