130 lines
3.1 KiB
JSON
130 lines
3.1 KiB
JSON
{
|
|
"name": "@nx/jest",
|
|
"version": "0.0.1",
|
|
"private": false,
|
|
"type": "commonjs",
|
|
"files": [
|
|
"dist",
|
|
"!dist/tsconfig.tsbuildinfo",
|
|
"migrations.json",
|
|
"executors.json",
|
|
"generators.json"
|
|
],
|
|
"description": "The Nx Plugin for Jest contains executors and generators allowing your workspace to use the powerful Jest testing capabilities.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nrwl/nx.git",
|
|
"directory": "packages/jest"
|
|
},
|
|
"keywords": [
|
|
"Monorepo",
|
|
"Angular",
|
|
"React",
|
|
"Web",
|
|
"Node",
|
|
"Nest",
|
|
"Jest",
|
|
"Unit Testing",
|
|
"CLI",
|
|
"Testing"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"typesVersions": {
|
|
"*": {
|
|
"plugin": [
|
|
"dist/plugin.d.ts"
|
|
],
|
|
"preset": [
|
|
"dist/preset.d.ts"
|
|
],
|
|
"plugins/resolver": [
|
|
"dist/plugins/resolver.d.ts"
|
|
],
|
|
"internal": [
|
|
"dist/internal.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"author": "Victor Savkin",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/nrwl/nx/issues"
|
|
},
|
|
"homepage": "https://nx.dev",
|
|
"generators": "./generators.json",
|
|
"executors": "./executors.json",
|
|
"ng-update": {
|
|
"requirements": {},
|
|
"migrations": "./migrations.json",
|
|
"supportsOptionalMigrations": true
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"@nx/nx-source": "./index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./package.json": "./package.json",
|
|
"./migrations.json": "./migrations.json",
|
|
"./generators.json": "./generators.json",
|
|
"./executors.json": "./executors.json",
|
|
"./plugin": {
|
|
"@nx/nx-source": "./plugin.ts",
|
|
"types": "./dist/plugin.d.ts",
|
|
"default": "./dist/plugin.js"
|
|
},
|
|
"./preset": {
|
|
"@nx/nx-source": "./preset.ts",
|
|
"types": "./dist/preset.d.ts",
|
|
"default": "./dist/preset.js"
|
|
},
|
|
"./plugins/resolver": {
|
|
"@nx/nx-source": "./plugins/resolver.ts",
|
|
"types": "./dist/plugins/resolver.d.ts",
|
|
"default": "./dist/plugins/resolver.js"
|
|
},
|
|
"./internal": {
|
|
"@nx/nx-source": "./internal.ts",
|
|
"types": "./dist/internal.d.ts",
|
|
"default": "./dist/internal.js"
|
|
}
|
|
},
|
|
"peerDependencies": {
|
|
"jest": "^29.0.0 || ^30.0.0",
|
|
"ts-jest": "^29.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"jest": {
|
|
"optional": true
|
|
},
|
|
"ts-jest": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@jest/reporters": "catalog:jest",
|
|
"@jest/test-result": "catalog:jest",
|
|
"@nx/devkit": "workspace:*",
|
|
"@nx/js": "workspace:*",
|
|
"@phenomnomnominal/tsquery": "catalog:typescript",
|
|
"identity-obj-proxy": "catalog:jest",
|
|
"jest-config": "catalog:jest",
|
|
"jest-resolve": "catalog:jest",
|
|
"jest-util": "catalog:jest",
|
|
"jsonc-parser": "catalog:",
|
|
"minimatch": "catalog:",
|
|
"picocolors": "catalog:",
|
|
"resolve.exports": "2.0.3",
|
|
"semver": "catalog:",
|
|
"tslib": "catalog:typescript",
|
|
"yargs-parser": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"nx": "workspace:*"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|