jest-environment-emit
Version:
Environment with unlimited test event handlers
142 lines (141 loc) • 3.63 kB
JSON
{
"name": "jest-environment-emit",
"version": "1.2.0",
"description": "Environment with unlimited test event handlers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"README.md",
"src",
"dist",
"*.js",
"*.mjs",
"!**/__utils__",
"!**/__tests__",
"!**/*.test.*"
],
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js",
"types": "./dist/index.d.ts"
},
"./jsdom": {
"import": "./jsdom.mjs",
"require": "./jsdom.js",
"types": "./dist/jsdom.d.ts"
},
"./node": {
"import": "./node.mjs",
"require": "./node.js",
"types": "./dist/node.d.ts"
},
"./debug": {
"import": "./debug.mjs",
"require": "./debug.js",
"types": "./dist/debug.d.ts"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=16.14.0"
},
"scripts": {
"prepare": "husky install || true",
"prepack": "tsc",
"build": "tsc",
"lint": "eslint . --fix",
"lint:ci": "eslint .",
"lint:staged": "lint-staged",
"test": "jest",
"test:e2e": "jest --config e2e/jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/jest-environment-emit.git"
},
"keywords": [
"environment",
"jest",
"jest-environment",
"jest-circus"
],
"author": "Yaroslav Serhieiev <yaroslavs@wix.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wix-incubator/jest-environment-emit/issues"
},
"homepage": "https://github.com/wix-incubator/jest-environment-emit#readme",
"dependencies": {
"bunyamin": "^1.5.2",
"bunyan": "^2.0.5",
"bunyan-debug-stream": "^3.1.0",
"funpermaproxy": "^1.1.0",
"lodash.merge": "^4.6.2",
"node-ipc": "9.2.1",
"strip-ansi": "^6.0.0",
"tslib": "^2.5.3"
},
"peerDependencies": {
"@jest/environment": ">=27.2.5",
"@jest/types": ">=27.2.5",
"jest": ">=27.2.5",
"jest-environment-jsdom": ">=27.2.5",
"jest-environment-node": ">=27.2.5"
},
"peerDependenciesMeta": {
"@jest/environment": {
"optional": true
},
"@jest/types": {
"optional": true
},
"jest": {
"optional": true
},
"jest-environment-jsdom": {
"optional": true
},
"jest-environment-node": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@jest/environment": "^30.0.0",
"@jest/reporters": "^30.0.0",
"@jest/types": "^30.0.0",
"@types/bunyan": "^1.8.11",
"@types/jest": "^29.2.5",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-ecmascript-compat": "^3.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-unicorn": "^50.0.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest-environment-node": "^30.0.0",
"lint-staged": "^15.2.0",
"lodash": "^4.17.21",
"prettier": "^3.1.1",
"semantic-release": "^22.0.12",
"ts-jest": "^29.3.4",
"typescript": "~5.2.0"
},
"browserslist": [
"node 16"
]
}