2020-04-28 17:46:47 +03:00
|
|
|
{
|
|
|
|
"name": "codeql",
|
2022-07-13 14:26:38 +03:00
|
|
|
"version": "2.1.17",
|
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",
|
2020-09-14 12:37:55 +03: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 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": {
|
2022-03-03 20:01:31 +03:00
|
|
|
"@actions/artifact": "^1.0.0",
|
2021-07-28 18:17:58 +03:00
|
|
|
"@actions/core": "^1.4.0",
|
2021-07-27 19:51:54 +03:00
|
|
|
"@actions/exec": "^1.1.0",
|
2020-09-18 17:40:23 +03:00
|
|
|
"@actions/github": "^4.0.0",
|
2021-04-22 17:04:59 +03:00
|
|
|
"@actions/io": "^1.1.0",
|
2022-05-13 13:54:40 +03:00
|
|
|
"@actions/tool-cache": "^2.0.0",
|
2020-11-19 00:14:45 +03:00
|
|
|
"@chrisgavin/safe-which": "^1.0.2",
|
2021-07-28 01:22:56 +03:00
|
|
|
"@octokit/plugin-retry": "^3.0.9",
|
2021-07-27 21:59:49 +03:00
|
|
|
"@octokit/types": "^6.21.1",
|
2021-07-28 13:17:10 +03:00
|
|
|
"commander": "^8.1.0",
|
2020-04-28 17:46:47 +03:00
|
|
|
"console-log-level": "^1.4.1",
|
2021-12-08 23:00:54 +03:00
|
|
|
"del": "^6.0.0",
|
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",
|
|
|
|
"fs": "0.0.1-security",
|
2021-08-25 20:45:44 +03:00
|
|
|
"github-linguist": "^2.4.4",
|
2022-04-14 20:00:42 +03:00
|
|
|
"glob": "^8.0.1",
|
2021-07-27 21:59:42 +03:00
|
|
|
"js-yaml": "^4.1.0",
|
2021-08-09 22:03:58 +03:00
|
|
|
"jsonschema": "1.2.6",
|
2022-01-31 21:32:15 +03:00
|
|
|
"long": "^5.2.0",
|
2021-07-28 18:04:09 +03:00
|
|
|
"md5": "^2.3.0",
|
2020-04-28 17:46:47 +03:00
|
|
|
"path": "^0.12.7",
|
2021-07-27 22:00:01 +03:00
|
|
|
"query-string": "^7.0.1",
|
2020-06-18 17:31:13 +03:00
|
|
|
"semver": "^7.3.2",
|
2021-07-28 11:07:24 +03:00
|
|
|
"uuid": "^8.3.2",
|
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": {
|
2022-02-01 16:33:29 +03:00
|
|
|
"@ava/typescript": "3.0.1",
|
2022-06-14 01:36:52 +03:00
|
|
|
"@types/js-yaml": "^4.0.5",
|
2021-07-28 01:22:48 +03:00
|
|
|
"@types/long": "4.0.1",
|
2022-02-03 20:54:09 +03:00
|
|
|
"@types/node": "16.11.22",
|
2021-07-28 11:07:37 +03:00
|
|
|
"@types/semver": "^7.3.8",
|
2021-07-27 21:59:55 +03:00
|
|
|
"@types/sinon": "^10.0.2",
|
2021-10-14 20:00:52 +03:00
|
|
|
"@typescript-eslint/parser": "^5.0.0",
|
2022-02-01 21:01:11 +03:00
|
|
|
"ava": "^4.0.1",
|
2021-08-02 11:57:28 +03:00
|
|
|
"eslint": "^7.32.0",
|
2020-09-14 12:32:24 +03:00
|
|
|
"eslint-plugin-filenames": "^1.3.2",
|
2021-08-11 15:52:58 +03:00
|
|
|
"eslint-plugin-github": "^4.2.0",
|
2021-08-09 22:47:56 +03:00
|
|
|
"eslint-plugin-import": "^2.24.0",
|
2020-09-14 12:32:24 +03:00
|
|
|
"eslint-plugin-no-async-foreach": "^0.1.1",
|
2021-07-28 18:17:58 +03:00
|
|
|
"micromatch": "4.0.4",
|
2021-07-27 19:51:47 +03:00
|
|
|
"nock": "^13.1.1",
|
2022-02-24 20:01:55 +03:00
|
|
|
"removeNPMAbsolutePaths": "3.0.0",
|
2022-01-29 04:16:14 +03:00
|
|
|
"sinon": "^13.0.0",
|
2021-09-02 20:00:45 +03:00
|
|
|
"typescript": "^4.4.2"
|
2021-07-15 00:35:34 +03:00
|
|
|
},
|
|
|
|
"resolutions": {
|
2021-10-22 01:24:20 +03:00
|
|
|
"glob-parent": ">=5.1.2"
|
2020-04-28 17:46:47 +03:00
|
|
|
}
|
2022-03-08 00:02:20 +03:00
|
|
|
}
|