UNPKG

@jpapini/jest-config

Version:

Jest configuration and utilities for JavaScript and TypeScript projects.

86 lines 1.9 kB
{ "name": "@jpapini/jest-config", "version": "1.8.6", "description": "Jest configuration and utilities for JavaScript and TypeScript projects.", "keywords": [ "jpapini", "jest-config", "tools", "jest", "config", "testing", "swc" ], "homepage": "https://github.com/jpapini/shared-packages/tree/main/packages/jest-config#readme", "bugs": { "url": "https://github.com/jpapini/shared-packages/issues" }, "repository": { "type": "git", "url": "git+https://github.com/jpapini/shared-packages.git", "directory": "packages/jest-config" }, "license": "MIT", "author": "Julien Papini <julien.papini@gmail.com> (https://github.com/jpapini)", "type": "module", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } }, "./package.json": "./package.json" }, "files": [ "dist", "src" ], "devDependencies": { "@jest/types": "30.0.5", "@swc/core": "1.13.3", "@swc/jest": "0.2.39", "@swc/types": "0.1.24", "jest": "30.0.5", "ts-jest": "29.4.1", "typescript": "5.9.2" }, "peerDependencies": { "@swc/core": "1", "@swc/jest": "0.2", "jest": "30", "ts-jest": "29" }, "peerDependenciesMeta": { "@swc/core": { "optional": true }, "@swc/jest": { "optional": true }, "ts-jest": { "optional": true } }, "engines": { "node": "22", "pnpm": "10" }, "volta": { "node": "22.18.0", "pnpm": "10.14.0" }, "publishConfig": { "access": "public" }, "scripts": { "clean": "rimraf .turbo dist node_modules/.cache", "reset": "pnpm run clean; rimraf node_modules", "typecheck": "tsc --noEmit --pretty", "build": "tsup" } }