2020-04-28 17:46:47 +03:00
|
|
|
{
|
|
|
|
"name": "codeql",
|
2021-07-27 02:35:55 +03:00
|
|
|
"version": "1.0.9",
|
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",
|
2020-06-23 15:42:43 +03:00
|
|
|
"test": "ava src/** --serial --verbose",
|
2021-05-10 13:12:08 +03:00
|
|
|
"test-debug": "ava src/** --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",
|
2021-05-21 23:36:20 +03:00
|
|
|
"removeNPMAbsolutePaths": "removeNPMAbsolutePaths . --force",
|
2021-05-31 20:26:28 +03:00
|
|
|
"version": "cd runner && npm version patch && cd .. && npm run removeNPMAbsolutePaths && git add runner"
|
2020-04-28 17:46:47 +03:00
|
|
|
},
|
2020-05-04 20:28:01 +03:00
|
|
|
"ava": {
|
|
|
|
"typescript": {
|
|
|
|
"rewritePaths": {
|
|
|
|
"src/": "lib/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-04-28 17:46:47 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2021-05-24 19:26:13 +03:00
|
|
|
"@actions/artifact": "^0.5.1",
|
2020-10-01 20:36:26 +03:00
|
|
|
"@actions/core": "^1.2.6",
|
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-07-27 19:51:17 +03:00
|
|
|
"@actions/http-client": "^1.0.11",
|
2021-04-22 17:04:59 +03:00
|
|
|
"@actions/io": "^1.1.0",
|
2021-06-23 16:07:01 +03:00
|
|
|
"@actions/tool-cache": "^1.7.1",
|
2020-11-19 00:14:45 +03:00
|
|
|
"@chrisgavin/safe-which": "^1.0.2",
|
2020-09-21 13:06:21 +03:00
|
|
|
"@octokit/plugin-retry": "^3.0.3",
|
2021-07-27 21:59:49 +03:00
|
|
|
"@octokit/types": "^6.21.1",
|
2021-05-31 21:14:03 +03:00
|
|
|
"commander": "^8.0.0-1",
|
2020-04-28 17:46:47 +03:00
|
|
|
"console-log-level": "^1.4.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",
|
|
|
|
"fs": "0.0.1-security",
|
2021-06-23 13:59:32 +03:00
|
|
|
"github-linguist": "^2.4.3",
|
2021-05-24 19:26:13 +03:00
|
|
|
"glob": "^7.1.7",
|
2021-07-27 21:59:42 +03:00
|
|
|
"js-yaml": "^4.1.0",
|
2020-05-15 19:22:59 +03:00
|
|
|
"jsonschema": "1.2.6",
|
2020-04-28 17:46:47 +03:00
|
|
|
"long": "^4.0.0",
|
|
|
|
"md5": "^2.2.1",
|
|
|
|
"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",
|
2020-09-29 17:03:21 +03:00
|
|
|
"uuid": "^8.3.0",
|
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": {
|
2020-05-04 20:50:13 +03:00
|
|
|
"@ava/typescript": "1.1.1",
|
2020-04-28 17:46:47 +03:00
|
|
|
"@types/jszip": "^3.1.6",
|
|
|
|
"@types/long": "4.0.0",
|
2020-06-18 17:31:13 +03:00
|
|
|
"@types/nock": "^11.1.0",
|
2021-07-27 22:00:10 +03:00
|
|
|
"@types/node": "^16.4.3",
|
2020-06-18 17:31:13 +03:00
|
|
|
"@types/semver": "^7.2.0",
|
2021-07-27 21:59:55 +03:00
|
|
|
"@types/sinon": "^10.0.2",
|
2020-09-14 12:32:24 +03:00
|
|
|
"@typescript-eslint/parser": "^4.1.0",
|
2020-05-04 20:50:13 +03:00
|
|
|
"ava": "3.8.1",
|
2020-09-14 12:32:24 +03:00
|
|
|
"eslint": "^7.9.0",
|
|
|
|
"eslint-plugin-filenames": "^1.3.2",
|
2021-07-27 19:51:39 +03:00
|
|
|
"eslint-plugin-github": "^4.1.5",
|
2020-09-14 12:32:24 +03:00
|
|
|
"eslint-plugin-import": "^2.22.0",
|
|
|
|
"eslint-plugin-no-async-foreach": "^0.1.1",
|
2020-05-04 20:50:13 +03:00
|
|
|
"micromatch": "4.0.2",
|
2021-07-27 19:51:47 +03:00
|
|
|
"nock": "^13.1.1",
|
2020-06-18 17:31:13 +03:00
|
|
|
"removeNPMAbsolutePaths": "2.0.0",
|
2020-06-24 16:33:55 +03:00
|
|
|
"sinon": "^9.0.2",
|
2021-07-27 19:52:03 +03:00
|
|
|
"typescript": "^4.3.5"
|
2021-07-15 00:35:34 +03:00
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"glob-parent": ">=5.1.2",
|
|
|
|
"normalize-url": ">=4.5.1"
|
2020-04-28 17:46:47 +03:00
|
|
|
}
|
2020-09-14 12:42:37 +03:00
|
|
|
}
|