UNPKG

@currents/jest

Version:

Currents reporter for Jest

96 lines (95 loc) 2.21 kB
{ "name": "@currents/jest", "version": "1.2.2", "main": "./dist/index.js", "author": { "name": "Currents Software Inc", "email": "hello@currents.dev" }, "license": "MIT", "description": "Currents reporter for Jest", "scripts": { "test": "jest", "rm": "rimraf dist", "lint": "TIMING=1 eslint \"**/*.ts*\"", "types": "tsc --noEmit", "build": "tsup-node --minify --dts", "dev": "tsup-node --watch --dts", "release": "release-it", "publish:npm": "npm run rm && npm run build && ./publish.js" }, "devDependencies": { "@jest/reporters": "^29.7.0", "@jest/types": "^29.6.3", "@release-it/conventional-changelog": "^10.0.1", "@types/babel__code-frame": "^7.0.6", "@types/fs-extra": "^11.0.4", "@types/lodash": "^4.17.16", "@types/node": "^22.13.14", "@types/uuid": "^10.0.0", "commander": "^13.1.0", "jest": "^29.5.0", "rimraf": "^6.0.1", "tsup": "^8.3.5", "typescript": "^5.7.2" }, "dependencies": { "@babel/code-frame": "^7.26.2", "chalk": "^4.1.2", "debug": "^4.4.0", "fs-extra": "^11.3.0", "lodash": "^4.17.21", "source-map-support": "^0.5.21", "ts-pattern": "^5.7.0", "uuid": "^11.1.0" }, "peerDependencies": { "jest": ">=29.5.0" }, "engines": { "node": ">=18.20.4" }, "files": [ "dist", "!**/*.map", "!**/*/*.map" ], "keywords": [ "jest", "jest dashboard", "cloud dashboard", "reporter", "currents", "tests reporter", "ci" ], "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" }, "./package.json": "./package.json" }, "release-it": { "npm": { "publish": false }, "github": { "release": true, "releaseName": "${npm.name} v${version}" }, "plugins": { "@release-it/conventional-changelog": { "preset": "angular", "header": "# Changelog", "ignoreVersion": true, "infile": "./CHANGELOG.md" } }, "git": { "commitMessage": "chore: release ${npm.name} v${version}", "tagName": "${npm.name}-v${version}" } } }