mirror of
https://github.com/github/codeql-action.git
synced 2026-05-17 08:40:16 +00:00
4041a11865
Bumps the npm-minor group with 3 updates in the / directory: [globals](https://github.com/sindresorhus/globals), [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) and [yaml](https://github.com/eemeli/yaml). Updates `globals` from 17.5.0 to 17.6.0 - [Release notes](https://github.com/sindresorhus/globals/releases) - [Commits](https://github.com/sindresorhus/globals/compare/v17.5.0...v17.6.0) Updates `typescript-eslint` from 8.59.1 to 8.59.2 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.2/packages/typescript-eslint) Updates `yaml` from 2.8.3 to 2.8.4 - [Release notes](https://github.com/eemeli/yaml/releases) - [Commits](https://github.com/eemeli/yaml/compare/v2.8.3...v2.8.4) --- updated-dependencies: - dependency-name: globals dependency-version: 17.6.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-minor - dependency-name: typescript-eslint dependency-version: 8.59.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-minor - dependency-name: yaml dependency-version: 2.8.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: npm-minor ... Signed-off-by: dependabot[bot] <support@github.com>
96 lines
2.9 KiB
JSON
96 lines
2.9 KiB
JSON
{
|
|
"name": "codeql",
|
|
"version": "4.35.5",
|
|
"private": true,
|
|
"description": "CodeQL action",
|
|
"scripts": {
|
|
"_build_comment": "echo 'Run the full build so we typecheck the project and can reuse the transpiled files in npm test'",
|
|
"build": "./scripts/check-node-modules.sh && npm run transpile && node build.mjs",
|
|
"lint": "eslint --report-unused-disable-directives --max-warnings=0 .",
|
|
"lint-ci": "SARIF_ESLINT_IGNORE_SUPPRESSED=true eslint --report-unused-disable-directives --max-warnings=0 . --format @microsoft/eslint-formatter-sarif --output-file=eslint.sarif",
|
|
"lint-fix": "eslint --report-unused-disable-directives --max-warnings=0 . --fix",
|
|
"ava": "npm run transpile && ava --verbose",
|
|
"test": "npm run ava -- src/",
|
|
"test-debug": "npm run test -- --timeout=20m",
|
|
"transpile": "tsc --build --verbose tsconfig.json"
|
|
},
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"pr-checks"
|
|
],
|
|
"dependencies": {
|
|
"@actions/artifact": "^5.0.3",
|
|
"@actions/artifact-legacy": "npm:@actions/artifact@^1.1.2",
|
|
"@actions/cache": "^5.0.5",
|
|
"@actions/core": "^2.0.3",
|
|
"@actions/exec": "^2.0.0",
|
|
"@actions/github": "^8.0.1",
|
|
"@actions/glob": "^0.5.0",
|
|
"@actions/http-client": "^3.0.0",
|
|
"@actions/io": "^2.0.0",
|
|
"@actions/tool-cache": "^3.0.1",
|
|
"@octokit/plugin-retry": "^8.1.0",
|
|
"archiver": "^7.0.1",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"follow-redirects": "^1.16.0",
|
|
"get-folder-size": "^5.0.0",
|
|
"https-proxy-agent": "^7.0.6",
|
|
"js-yaml": "^4.1.1",
|
|
"jsonschema": "1.5.0",
|
|
"long": "^5.3.2",
|
|
"node-forge": "^1.4.0",
|
|
"semver": "^7.7.4",
|
|
"uuid": "^14.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@ava/typescript": "7.0.0",
|
|
"@eslint/compat": "^2.0.5",
|
|
"@microsoft/eslint-formatter-sarif": "^3.1.0",
|
|
"@octokit/types": "^16.0.0",
|
|
"@types/archiver": "^7.0.0",
|
|
"@types/follow-redirects": "^1.14.4",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^20.19.39",
|
|
"@types/node-forge": "^1.3.14",
|
|
"@types/sarif": "^2.1.7",
|
|
"@types/semver": "^7.7.1",
|
|
"@types/sinon": "^21.0.1",
|
|
"ava": "^7.0.0",
|
|
"esbuild": "^0.28.0",
|
|
"eslint": "^9.39.4",
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
"eslint-plugin-github": "^6.0.0",
|
|
"eslint-plugin-import-x": "^4.16.2",
|
|
"eslint-plugin-jsdoc": "^62.9.0",
|
|
"eslint-plugin-no-async-foreach": "^0.1.1",
|
|
"glob": "^11.1.0",
|
|
"globals": "^17.6.0",
|
|
"nock": "^14.0.12",
|
|
"sinon": "^21.1.2",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.59.2"
|
|
},
|
|
"overrides": {
|
|
"@actions/tool-cache": {
|
|
"semver": ">=6.3.1"
|
|
},
|
|
"@octokit/request-error": {
|
|
"semver": ">=5.1.1"
|
|
},
|
|
"@octokit/request": {
|
|
"semver": ">=8.4.1"
|
|
},
|
|
"@octokit/plugin-paginate-rest": {
|
|
"semver": ">=9.2.2"
|
|
},
|
|
"eslint-plugin-import": {
|
|
"semver": ">=6.3.1"
|
|
},
|
|
"eslint-plugin-jsx-a11y": {
|
|
"semver": ">=6.3.1"
|
|
},
|
|
"glob": "^11.1.0",
|
|
"undici": "^6.24.0"
|
|
}
|
|
}
|