node-reporter-gha
Version:
Node reporter for GitHub Actions
58 lines (57 loc) • 1.83 kB
JSON
{
"name": "node-reporter-gha",
"description": "Node reporter for GitHub Actions",
"version": "2.0.5",
"type": "module",
"exports": "./dist/lib/index.mjs",
"scripts": {
"build": "tsc",
"lint": "eslint -f gha .",
"typecheck": "tsc --noEmit",
"test": "node --import=./loader.mjs --test test/unit/*.spec.mts && node --import=./loader.mjs test/integration/index.spec.mts",
"test:js": "node --test dist/test/unit/*.spec.mjs && node dist/test/integration/index.spec.mjs",
"test:coverage": "c8 npm test",
"test:sonarqube": "c8 node --import=./loader.mjs --test --test-reporter=spec --test-reporter-destination=stdout --test-reporter=node-reporter-sonarqube --test-reporter-destination=test-report.xml test/unit/*.spec.mts",
"prepack": "npm run build"
},
"keywords": [
"test-reporter",
"node-reporter",
"gha",
"github-actions"
],
"files": [
"./dist/lib/*.mjs",
"./dist/lib/*.d.mts",
"./dist/lib/*.mjs.map"
],
"typings": "./dist/lib/index.d.mts",
"author": "Volodymyr Kolesnykov <volodymyr@wildwolf.name> (https://wildwolf.name/)",
"license": "MIT",
"devDependencies": {
"@myrotvorets/buffer-stream": "^1.4.1",
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.2",
"@types/node": "^24.0.1",
"c8": "^10.1.3",
"eslint-formatter-gha": "^1.5.2",
"node-reporter-sonarqube": "^1.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjinks/node-reporter-gha.git"
},
"bugs": {
"url": "https://github.com/sjinks/node-reporter-gha/issues"
},
"homepage": "https://github.com/sjinks/node-reporter-gha#readme",
"publishConfig": {
"access": "public",
"provenance": true
}
}