Files
codeql-action/package.json
T

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

90 lines
2.5 KiB
JSON
Raw Normal View History

{
"name": "codeql",
2023-11-23 11:04:37 +00:00
"version": "2.22.9",
"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",
2020-09-14 10:37:55 +01:00
"lint": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts",
"lint-fix": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts --fix",
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",
2023-08-14 17:43:22 +00:00
"@actions/cache": "^3.2.2",
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",
2023-11-20 14:35:28 -08:00
"@octokit/types": "^12.3.0",
2023-07-24 17:12:49 +00:00
"@schemastore/package": "0.0.10",
2023-11-20 14:35:28 -08:00
"@types/uuid": "^9.0.7",
2023-07-13 09:06:22 +00:00
"adm-zip": "^0.5.10",
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",
"path": "^0.12.7",
2023-07-11 20:48:06 +01:00
"semver": "^7.5.4",
2023-09-18 20:01:16 +00:00
"uuid": "^9.0.1",
"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",
2023-11-27 19:00:06 +00:00
"@types/adm-zip": "^0.5.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",
2022-02-03 17:54:09 +00:00
"@types/node": "16.11.22",
2023-11-27 19:00:06 +00:00
"@types/semver": "^7.5.6",
"@types/sinon": "^17.0.2",
2023-12-04 19:22:11 +00:00
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
2023-07-13 09:06:22 +00:00
"ava": "^5.3.1",
2023-12-04 19:22:11 +00:00
"eslint": "^8.55.0",
2023-09-26 10:34:03 -07:00
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-filenames": "^1.3.2",
2023-10-02 16:31:08 -07:00
"eslint-plugin-github": "^4.10.1",
2023-10-23 18:01:32 +00:00
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-no-async-foreach": "^0.1.1",
2023-07-13 09:06:22 +00:00
"micromatch": "4.0.5",
2023-12-04 19:22:11 +00:00
"nock": "^13.4.0",
2023-07-13 09:06:22 +00:00
"removeNPMAbsolutePaths": "3.0.1",
2023-11-20 14:35:28 -08:00
"sinon": "^17.0.1",
"typescript": "^5.3.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"
},
"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
}