2020-04-28 16:46:47 +02:00
|
|
|
{
|
|
|
|
|
"name": "codeql",
|
2023-03-27 13:41:15 +00:00
|
|
|
"version": "2.2.10",
|
2020-04-28 16:46:47 +02:00
|
|
|
"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-04-28 16:46:47 +02:00
|
|
|
},
|
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
|
|
|
}
|
|
|
|
|
},
|
2020-04-28 16:46:47 +02:00
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2022-10-13 13:25:43 -07:00
|
|
|
"@actions/artifact": "^1.1.0",
|
|
|
|
|
"@actions/cache": "^3.0.5",
|
|
|
|
|
"@actions/core": "^1.10.0",
|
|
|
|
|
"@actions/exec": "^1.1.1",
|
2020-09-18 15:40:23 +01:00
|
|
|
"@actions/github": "^4.0.0",
|
2022-10-13 13:25:43 -07:00
|
|
|
"@actions/io": "^1.1.2",
|
|
|
|
|
"@actions/tool-cache": "^2.0.1",
|
2020-11-18 21:14:45 +00:00
|
|
|
"@chrisgavin/safe-which": "^1.0.2",
|
2023-01-23 17:02:48 +00:00
|
|
|
"@octokit/plugin-retry": "^4.0.4",
|
2023-01-23 19:48:29 +00:00
|
|
|
"@octokit/types": "^9.0.0",
|
2023-01-20 12:03:17 +00:00
|
|
|
"@schemastore/package": "^0.0.6",
|
2023-01-20 11:52:12 +00:00
|
|
|
"@types/uuid": "^9.0.0",
|
2022-08-01 11:24:34 +02:00
|
|
|
"adm-zip": "^0.5.9",
|
2021-07-28 10:17:10 +00:00
|
|
|
"commander": "^8.1.0",
|
2020-04-28 16:46:47 +02:00
|
|
|
"console-log-level": "^1.4.1",
|
2021-12-08 12:00:54 -08:00
|
|
|
"del": "^6.0.0",
|
2021-01-26 15:50:22 +00:00
|
|
|
"fast-deep-equal": "^3.1.3",
|
2020-04-28 16:46:47 +02:00
|
|
|
"file-url": "^3.0.0",
|
|
|
|
|
"fs": "0.0.1-security",
|
2022-08-15 14:44:43 +01:00
|
|
|
"get-folder-size": "^2.0.1",
|
2023-03-06 10:36:27 +00:00
|
|
|
"glob": "^9.2.1",
|
2021-07-27 18:59:42 +00:00
|
|
|
"js-yaml": "^4.1.0",
|
2021-08-09 12:03:58 -07:00
|
|
|
"jsonschema": "1.2.6",
|
2022-01-31 18:32:15 +00:00
|
|
|
"long": "^5.2.0",
|
2021-07-28 15:04:09 +00:00
|
|
|
"md5": "^2.3.0",
|
2020-04-28 16:46:47 +02:00
|
|
|
"path": "^0.12.7",
|
2020-06-18 16:31:13 +02:00
|
|
|
"semver": "^7.3.2",
|
2022-09-08 17:02:40 +00:00
|
|
|
"uuid": "^9.0.0",
|
2020-04-28 16:46:47 +02:00
|
|
|
"zlib": "^1.0.5"
|
|
|
|
|
},
|
2020-05-04 18:50:13 +01:00
|
|
|
"//": [
|
|
|
|
|
"micromatch is an unspecified dependency of ava"
|
|
|
|
|
],
|
2020-04-28 16:46:47 +02:00
|
|
|
"devDependencies": {
|
2023-03-13 14:10:40 -07:00
|
|
|
"@ava/typescript": "4.0.0",
|
2022-08-01 11:24:34 +02:00
|
|
|
"@types/adm-zip": "^0.5.0",
|
2022-08-15 14:44:43 +01:00
|
|
|
"@types/get-folder-size": "^2.0.0",
|
2022-06-13 15:36:52 -07:00
|
|
|
"@types/js-yaml": "^4.0.5",
|
2022-02-03 17:54:09 +00:00
|
|
|
"@types/node": "16.11.22",
|
2021-07-28 08:07:37 +00:00
|
|
|
"@types/semver": "^7.3.8",
|
2021-07-27 18:59:55 +00:00
|
|
|
"@types/sinon": "^10.0.2",
|
2023-01-18 20:00:33 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
2023-03-20 13:32:50 -07:00
|
|
|
"@typescript-eslint/parser": "^5.56.0",
|
2023-01-18 20:50:03 +00:00
|
|
|
"ava": "^5.1.1",
|
|
|
|
|
"eslint": "^8.32.0",
|
|
|
|
|
"eslint-import-resolver-typescript": "^3.5.3",
|
2020-09-14 10:32:24 +01:00
|
|
|
"eslint-plugin-filenames": "^1.3.2",
|
2023-01-18 20:50:03 +00:00
|
|
|
"eslint-plugin-github": "^4.6.0",
|
2023-01-18 20:26:59 +00:00
|
|
|
"eslint-plugin-import": "^2.27.5",
|
2020-09-14 10:32:24 +01:00
|
|
|
"eslint-plugin-no-async-foreach": "^0.1.1",
|
2021-07-28 15:17:58 +00:00
|
|
|
"micromatch": "4.0.4",
|
2021-07-27 16:51:47 +00:00
|
|
|
"nock": "^13.1.1",
|
2022-02-24 17:01:55 +00:00
|
|
|
"removeNPMAbsolutePaths": "3.0.0",
|
2023-01-18 20:50:03 +00:00
|
|
|
"sinon": "^15.0.1",
|
2023-03-20 13:32:50 -07:00
|
|
|
"typescript": "^5.0.2"
|
2021-07-14 14:35:34 -07:00
|
|
|
},
|
|
|
|
|
"resolutions": {
|
2021-10-21 15:24:20 -07:00
|
|
|
"glob-parent": ">=5.1.2"
|
2020-04-28 16:46:47 +02:00
|
|
|
}
|
2022-03-07 21:02:20 +00:00
|
|
|
}
|