codeql-action/package.json

93 строки
2.5 KiB
JSON
Исходник Обычный вид История

{
"name": "codeql",
"version": "2.20.4",
"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",
"removeNPMAbsolutePaths": "removeNPMAbsolutePaths . --force"
},
2020-05-04 20:28:01 +03:00
"ava": {
"typescript": {
"rewritePaths": {
"src/": "lib/"
},
"compile": false
2020-05-04 20:28:01 +03:00
}
},
"license": "MIT",
"dependencies": {
"@actions/artifact": "^1.1.0",
2023-07-11 22:48:06 +03:00
"@actions/cache": "^3.2.1",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^4.0.0",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"@chrisgavin/safe-which": "^1.0.2",
"@octokit/plugin-retry": "^5.0.2",
"@octokit/types": "^11.1.0",
"@schemastore/package": "^0.0.6",
"@types/uuid": "^9.0.0",
2022-08-01 12:24:34 +03:00
"adm-zip": "^0.5.9",
"console-log-level": "^1.4.1",
"del": "^6.0.0",
"fast-deep-equal": "^3.1.3",
"file-url": "^3.0.0",
"fs": "0.0.1-security",
2022-08-15 16:44:43 +03:00
"get-folder-size": "^2.0.1",
"js-yaml": "^4.1.0",
"jsonschema": "1.4.1",
"long": "^5.2.0",
"path": "^0.12.7",
2023-07-11 22:48:06 +03:00
"semver": "^7.5.4",
"uuid": "^9.0.0",
"zlib": "^1.0.5"
},
2020-05-04 20:50:13 +03:00
"//": [
"micromatch is an unspecified dependency of ava"
],
"devDependencies": {
"@ava/typescript": "4.0.0",
2022-08-01 12:24:34 +03:00
"@types/adm-zip": "^0.5.0",
2022-08-15 16:44:43 +03:00
"@types/get-folder-size": "^2.0.0",
2022-06-14 01:36:52 +03:00
"@types/js-yaml": "^4.0.5",
2022-02-03 20:54:09 +03:00
"@types/node": "16.11.22",
"@types/semver": "^7.3.8",
"@types/sinon": "^10.0.2",
2023-01-18 23:00:33 +03:00
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.56.0",
2023-01-18 23:50:03 +03:00
"ava": "^5.1.1",
"eslint": "^8.32.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-filenames": "^1.3.2",
2023-01-18 23:50:03 +03:00
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-async-foreach": "^0.1.1",
"micromatch": "4.0.4",
"nock": "^13.1.1",
"removeNPMAbsolutePaths": "3.0.0",
2023-01-18 23:50:03 +03:00
"sinon": "^15.0.1",
"typescript": "^5.0.2"
},
"overrides": {
2023-07-11 22:48:06 +03:00
"@actions/cache": {
"semver": ">=6.3.1"
},
"@actions/tool-cache": {
"semver": ">=6.3.1"
},
"eslint-plugin-import": {
"semver": ">=6.3.1"
},
"eslint-plugin-jsx-a11y": {
"semver": ">=6.3.1"
},
"xml2js": ">=0.5.0"
}
2022-03-08 00:02:20 +03:00
}