UNPKG

@sentry/jest-environment

Version:

Automatic performance instrumentation for your Jest tests.

74 lines (73 loc) 1.76 kB
{ "name": "@sentry/jest-environment", "version": "7.0.0", "description": "Automatic performance instrumentation for your Jest tests.", "engines": { "node": ">=24" }, "main": "index.js", "scripts": { "format": "prettier --write .", "format-check": "prettier --check .", "test": "npm run test:unit && npm run test:integration", "test:integration": "jest --runInBand --no-watchman --config jest.config.js", "test:unit": "node --test" }, "repository": { "type": "git", "url": "git+https://github.com/getsentry/jest-sentry-environment.git" }, "files": [ "package.json", "README.md", "LICENSE", "index.js", "node.js", "jsdom.js", "createEnvironment.js" ], "keywords": [ "sentry", "jest", "test", "testing", "performance", "tracing" ], "author": "Billy Vong <github@mmo.me>", "license": "Apache-2.0", "bugs": { "url": "https://github.com/getsentry/jest-sentry-environment/issues" }, "homepage": "https://github.com/getsentry/jest-sentry-environment#readme", "devDependencies": { "jest-environment-jsdom": "^30.4.1", "jest-environment-node": "^30.4.1", "prettier": "^3.9.5" }, "peerDependencies": { "@sentry/node": ">=10", "jest": ">=30", "jest-environment-jsdom": ">=30", "jest-environment-node": ">=30" }, "peerDependenciesMeta": { "jest-environment-jsdom": { "optional": true }, "jest-environment-node": { "optional": true } }, "prettier": { "bracketSpacing": false, "bracketSameLine": false, "printWidth": 90, "semi": true, "singleQuote": true, "tabWidth": 2, "trailingComma": "es5", "useTabs": false, "arrowParens": "avoid" } }