UNPKG

fern-jest-client

Version:

Jest test reporter client for Fern platform - captures and sends test execution data to fern-reporter

60 lines 1.51 kB
{ "name": "fern-jest-client", "version": "0.2.0", "description": "Jest test reporter client for Fern platform - captures and sends test execution data to fern-reporter", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "test": "jest", "test:unit": "jest --testNamePattern=\"unit\"", "test:integration": "jest --testNamePattern=\"integration\"", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "clean": "rm -rf dist", "prepare": "npm run build" }, "keywords": [ "jest", "test-reporter", "fern", "test-reporting", "ci-cd" ], "author": "Fern Platform", "license": "Apache-2.0", "files": [ "dist/", "README.md", "LICENSE" ], "dependencies": { "axios": "^1.6.0", "simple-git": "^3.20.0" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.5.0", "prettier": "^3.0.0", "ts-jest": "^29.1.0", "typescript": "^5.0.0" }, "peerDependencies": { "jest": ">=29.0.0" }, "engines": { "node": ">=16.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/guidewire-oss/fern-jest-client.git" }, "bugs": { "url": "https://github.com/guidewire-oss/fern-jest-client/issues" }, "homepage": "https://github.com/guidewire-oss/fern-jest-client" }