UNPKG

@stoe/action-reporting-cli

Version:
94 lines (93 loc) 2.38 kB
{ "name": "@stoe/action-reporting-cli", "version": "4.0.0", "type": "module", "description": "CLI to report on GitHub Actions", "keywords": [ "github-actions", "reporting", "cli" ], "author": { "name": "Stefan Stölzle", "email": "stefan@github.com", "url": "https://github.com/stoe" }, "repository": "github:stoe/action-reporting-cli", "license": "MIT", "engines": { "node": ">=20", "npm": ">=10" }, "bin": { "action-reporting-cli": "./cli.js" }, "exports": { ".": "./src/report/report.js", "./report": "./src/report/report.js", "./report/*": "./src/report/*.js", "./github": "./src/github/base.js", "./github/*": "./src/github/*.js", "./util": "./src/util/log.js", "./util/*": "./src/util/*.js", "./package.json": "./package.json" }, "files": [ "src/", "cli.js", "license", "readme.md" ], "publishConfig": { "access": "public", "provenance": true }, "scripts": { "format": "npx prettier --config-precedence prefer-file --write . && eslint -c eslint.config.js . --fix", "pretest": "eslint -c eslint.config.js .", "test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js", "test:watch": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --watch" }, "dependencies": { "@octokit/core": "^7.0.2", "@octokit/plugin-paginate-rest": "^13.1.0", "@octokit/plugin-throttling": "^11.0.1", "chalk": "^4.1.2, <6", "csv": "^6.3.11", "got": "^14.4.7", "js-yaml": "^4.1.0", "meow": "^13.2.0", "normalize-url": "^8.0.2", "ora": "^8.2.0", "winston": "^3.17.0" }, "devDependencies": { "@github/prettier-config": "^0.0.6", "eslint": "^9.29.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-markdown": "^5.1.0", "eslint-plugin-prettier": "^5.5.0", "globals": "^16.2.0", "husky": "^9.1.7", "jest": "^30.0.2", "lint-staged": "^16.1.2", "prettier": "^3.5.3", "sinon": "^21.0.0" }, "husky": { "hooks": { "pre-commit": ".husky/pre-commit", "pre-push": ".husky/pre-push" } }, "lint-staged": { "*.{js,jsx,ts,tsx}": [ "npm run format", "npm run test" ], "*.{json,md}": [ "npm run format" ] }, "prettier": "@github/prettier-config" }