Files
codeql-action/package.json
T

79 lines
2.3 KiB
JSON
Raw Normal View History

{
"name": "codeql",
2021-08-09 21:14:09 +00:00
"version": "1.0.12",
"private": true,
"description": "CodeQL action",
"scripts": {
2021-05-07 20:15:12 -04:00
"build": "tsc --build",
2020-06-23 13:42:43 +01:00
"test": "ava src/** --serial --verbose",
2021-05-10 11:12:08 +01:00
"test-debug": "ava src/** --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",
"removeNPMAbsolutePaths": "removeNPMAbsolutePaths . --force",
2021-05-31 10:26:28 -07:00
"version": "cd runner && npm version patch && cd .. && npm run removeNPMAbsolutePaths && git add runner"
},
2020-05-04 18:28:01 +01:00
"ava": {
"typescript": {
"rewritePaths": {
"src/": "lib/"
}
}
},
"license": "MIT",
"dependencies": {
2021-07-27 22:22:24 +00:00
"@actions/artifact": "^0.5.2",
2021-07-28 15:17:58 +00:00
"@actions/core": "^1.4.0",
2021-07-27 16:51:54 +00:00
"@actions/exec": "^1.1.0",
"@actions/github": "^4.0.0",
"@actions/http-client": "^1.0.11",
"@actions/io": "^1.1.0",
2021-06-23 14:07:01 +01:00
"@actions/tool-cache": "^1.7.1",
"@chrisgavin/safe-which": "^1.0.2",
"@octokit/plugin-retry": "^3.0.9",
2021-07-27 18:59:49 +00:00
"@octokit/types": "^6.21.1",
2021-07-28 10:17:10 +00:00
"commander": "^8.1.0",
"console-log-level": "^1.4.1",
"fast-deep-equal": "^3.1.3",
"file-url": "^3.0.0",
"fs": "0.0.1-security",
2021-06-23 11:59:32 +01:00
"github-linguist": "^2.4.3",
"glob": "^7.1.7",
2021-07-27 18:59:42 +00:00
"js-yaml": "^4.1.0",
"jsonschema": "1.2.6",
"long": "^4.0.0",
2021-07-28 15:04:09 +00:00
"md5": "^2.3.0",
"path": "^0.12.7",
2021-07-27 19:00:01 +00:00
"query-string": "^7.0.1",
"semver": "^7.3.2",
2021-07-28 08:07:24 +00:00
"uuid": "^8.3.2",
"zlib": "^1.0.5"
},
2020-05-04 18:50:13 +01:00
"//": [
"micromatch is an unspecified dependency of ava"
],
"devDependencies": {
2021-08-09 19:48:14 +00:00
"@ava/typescript": "2.0.0",
2021-07-28 08:06:49 +00:00
"@types/jszip": "^3.4.1",
2021-07-27 22:22:48 +00:00
"@types/long": "4.0.1",
"@types/nock": "^11.1.0",
2021-07-29 09:06:25 +00:00
"@types/node": "^16.4.6",
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",
"@typescript-eslint/parser": "^4.29.0",
2020-05-04 18:50:13 +01:00
"ava": "3.8.1",
2021-08-02 08:57:28 +00:00
"eslint": "^7.32.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-github": "^4.1.5",
"eslint-plugin-import": "^2.22.0",
"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",
"removeNPMAbsolutePaths": "2.0.0",
2021-07-27 22:23:24 +00:00
"sinon": "^11.1.2",
2021-07-27 16:52:03 +00:00
"typescript": "^4.3.5"
2021-07-14 14:35:34 -07:00
},
"resolutions": {
"glob-parent": ">=5.1.2",
"normalize-url": ">=4.5.1"
}
2020-09-14 10:42:37 +01:00
}