vitest-github-action
Version:
GitHub actions error and coverage reporter for vitest.
97 lines (96 loc) • 2.64 kB
JSON
{
"name": "vitest-github-action",
"version": "1.3.16",
"description": "GitHub actions error and coverage reporter for vitest.",
"types": "dist/index.d.ts",
"module": "./dist/index.js",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./*": "./*"
},
"files": [
"README.md",
"dist"
],
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts --ext .js",
"lint:fix": "npm run lint -- --fix",
"build": "tsup",
"prepare": "is-ci || husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roerohan/vitest-github-action.git"
},
"keywords": [
"vitest",
"coverage",
"reporter",
"actions"
],
"author": "https://github.com/roerohan",
"license": "MIT",
"bugs": {
"url": "https://github.com/roerohan/vitest-github-action/issues"
},
"homepage": "https://github.com/roerohan/vitest-github-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@vitest/coverage-istanbul": "^0.31.1",
"execa": "^7.1.1",
"istanbul-lib-instrument": "^5.2.1",
"istanbul-lib-report": "^3.0.0",
"istanbul-lib-source-maps": "^4.0.1",
"istanbul-reports": "^3.1.5",
"test-exclude": "^6.0.0",
"tsup": "^6.6.3"
},
"peerDependencies": {
"vitest": ">=0.28.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/istanbul-lib-instrument": "^1.7.4",
"@types/istanbul-lib-report": "^3.0.0",
"@types/istanbul-lib-source-maps": "^4.0.1",
"@types/istanbul-reports": "^3.0.1",
"@types/test-exclude": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.34.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.56.0",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"semantic-release": "^20.1.0",
"typescript": "^4.9.5",
"vitest": "^0.31.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}