v2 new release (#77)

This commit is contained in:
github-actions[bot]
2022-06-27 14:12:49 -04:00
committed by GitHub
parent 217bf70cbd
commit 199ab446df
611 changed files with 8668 additions and 45625 deletions

72
node_modules/ts-jest/package.json generated vendored
View File

@@ -1,17 +1,17 @@
{
"name": "ts-jest",
"version": "25.5.1",
"version": "26.5.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "cli.js",
"bin": {
"ts-jest": "cli.js"
},
"description": "A preprocessor with source maps support to help use TypeScript with Jest",
"scripts": {
"prebuild": "node scripts/clean-dist.js",
"prebuild": "node scripts/pre-build.js",
"build": "tsc -p tsconfig.build.json",
"postbuild": "node scripts/post-build.js",
"build:watch": "tsc -p tsconfig.build.json -w",
"clean": "node scripts/clean.js",
"pretest": "npm run lint",
"test": "run-s -s test:e2e \"test:unit -- {@}\" --",
"test:prepare": "npm run test:e2e -- --prepareOnly",
"test:e2e": "node scripts/e2e.js",
@@ -32,7 +32,8 @@
"prepublishOnly": "npm run test",
"preversion": "npm run test",
"update:e2e": "node scripts/update-e2e-templates.js",
"version": "npm run changelog && git add CHANGELOG.md"
"version": "npm run changelog && git add CHANGELOG.md",
"raw-tsconfig-types": "node scripts/tsconfig-raw-types.js"
},
"repository": {
"type": "git",
@@ -60,17 +61,17 @@
"bs-logger": "0.x",
"buffer-from": "1.x",
"fast-json-stable-stringify": "2.x",
"jest-util": "^26.1.0",
"json5": "2.x",
"lodash.memoize": "4.x",
"lodash": "4.x",
"make-error": "1.x",
"micromatch": "4.x",
"mkdirp": "0.x",
"semver": "6.x",
"yargs-parser": "18.x"
"mkdirp": "1.x",
"semver": "7.x",
"yargs-parser": "20.x"
},
"peerDependencies": {
"jest": ">=25 <26",
"typescript": ">=3.4 <4.0"
"jest": ">=26 <27",
"typescript": ">=3.8 <5.0"
},
"husky": {
"hooks": {
@@ -80,60 +81,55 @@
}
},
"devDependencies": {
"@commitlint/cli": "8.x",
"@commitlint/config-conventional": "8.x",
"@jest/transform": "25.x",
"@jest/types": "25.x",
"@commitlint/cli": "11.x",
"@commitlint/config-angular": "^11.0.0",
"@jest/transform": "26.x",
"@jest/types": "26.x",
"@types/babel__core": "7.x",
"@types/buffer-from": "latest",
"@types/cross-spawn": "latest",
"@types/fs-extra": "latest",
"@types/jest": "25.x",
"@types/jest": "26.x",
"@types/js-yaml": "latest",
"@types/json5": "latest",
"@types/lodash.memoize": "4.x",
"@types/lodash.merge": "4.x",
"@types/lodash.set": "4.x",
"@types/lodash": "4.x",
"@types/micromatch": "4.x",
"@types/mkdirp": "latest",
"@types/node": "10.x",
"@types/node": "14.x",
"@types/react": "16.x",
"@types/semver": "latest",
"@types/yargs": "latest",
"@types/yargs-parser": "15.x",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@typescript-eslint/eslint-plugin": "4.x",
"@typescript-eslint/parser": "4.x",
"conventional-changelog-cli": "2.x",
"cross-spawn": "latest",
"eslint": "latest",
"eslint": "7.x",
"eslint-config-prettier": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prettier": "latest",
"fs-extra": "8.x",
"execa": "latest",
"fs-extra": "9.x",
"glob-gitignore": "latest",
"husky": "3.x",
"jest": "25.x",
"husky": "4.x",
"jest": "26.x",
"js-yaml": "latest",
"json-schema-to-typescript": "^10.1.3",
"lint-staged": "latest",
"lodash.merge": "4.x",
"lodash.set": "4.x",
"node-fetch": "^2.6.1",
"npm-run-all": "latest",
"prettier": "1.x",
"prettier": "2.x",
"source-map": "latest",
"typescript": "3.x"
"typescript": "4.x"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{js,jsx}": [
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">= 8"
"node": ">= 10"
}
}