{ "name": "codeql-actions-action", "version": "0.1.0", "description": "CodeQL Pack to analyze GitHub Actions and Workflows", "main": "dist/index.js", "scripts": { "bundle": "npm run format:write && npm run package", "cli": "ts-node src/index.ts", "ci-test": "jest", "format:write": "prettier --write **/*.ts", "format:check": "prettier --check **/*.ts", "lint": "npx eslint . -c ./.github/linters/.eslintrc.yml", "package": "ncc build src/index.ts --license licenses.txt", "package:watch": "npm run package -- --watch", "test": "(jest && make-coverage-badge --output-path ./badges/coverage.svg) || make-coverage-badge --output-path ./badges/coverage.svg", "all": "npm run format:write && npm run lint && npm run test && npm run package" }, "repository": { "type": "git", "url": "git+https://github.com/GitHubSecurityLab/codeql-actions.git" }, "exports": { ".": "./dist/index.js" }, "keywords": [ "codeql", "security", "actions" ], "author": "Pwntester", "license": "MIT", "bugs": { "url": "https://github.com/GitHubSecurityLab/codeql-actions/issues" }, "homepage": "https://github.com/GitHubSecurityLab/codeql-actions#readme", "dependencies": { "@actions/core": "^1.10.1", "@actions/exec": "^1.1.1", "@actions/github": "^5.1.1", "@actions/tool-cache": "^2.0.1" }, "devDependencies": { "@types/node": "^20.6.0", "@vercel/ncc": "^0.38.0", "prettier": "^3.0.3", "typescript": "^5.2.2" } }