@stoe/action-reporting-cli
Version:
CLI to report on GitHub Actions
94 lines (93 loc) • 2.37 kB
JSON
{
"name": "@stoe/action-reporting-cli",
"version": "4.1.1",
"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": ">=22",
"npm": ">=11"
},
"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.5",
"@octokit/plugin-paginate-rest": "^13.2.0",
"@octokit/plugin-throttling": "^11.0.2",
"chalk": "^4.1.2, <6",
"csv": "^6.4.1",
"got": "^14.4.9",
"js-yaml": "^4.1.0",
"meow": "^14.0.0",
"normalize-url": "^8.1.0",
"ora": "^9.0.0",
"winston": "^3.18.3"
},
"devDependencies": {
"@eslint/markdown": "^7.3.0",
"@github/prettier-config": "^0.0.6",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.3",
"prettier": "^3.6.2",
"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"
}