@pkg-nec/jest-config 30.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/build/index.d.ts +201 -0
- package/build/index.js +2903 -0
- package/build/index.mjs +14 -0
- package/package.json +78 -0
package/build/index.mjs
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import cjsModule from './index.js';
|
|
2
|
+
|
|
3
|
+
export const constants = cjsModule.constants;
|
|
4
|
+
export const defaults = cjsModule.defaults;
|
|
5
|
+
export const defineConfig = cjsModule.defineConfig;
|
|
6
|
+
export const deprecationEntries = cjsModule.deprecationEntries;
|
|
7
|
+
export const descriptions = cjsModule.descriptions;
|
|
8
|
+
export const isJSONString = cjsModule.isJSONString;
|
|
9
|
+
export const mergeConfig = cjsModule.mergeConfig;
|
|
10
|
+
export const normalize = cjsModule.normalize;
|
|
11
|
+
export const readConfig = cjsModule.readConfig;
|
|
12
|
+
export const readConfigs = cjsModule.readConfigs;
|
|
13
|
+
export const readInitialOptions = cjsModule.readInitialOptions;
|
|
14
|
+
export const replaceRootDirInPath = cjsModule.replaceRootDirInPath;
|
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pkg-nec/jest-config",
|
|
3
|
+
"version": "30.4.2",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/jestjs/jest.git",
|
|
7
|
+
"directory": "packages/jest-config"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"main": "./build/index.js",
|
|
11
|
+
"types": "./build/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./build/index.d.ts",
|
|
15
|
+
"require": "./build/index.js",
|
|
16
|
+
"import": "./build/index.mjs",
|
|
17
|
+
"default": "./build/index.js"
|
|
18
|
+
},
|
|
19
|
+
"./package.json": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
"peerDependencies": {
|
|
22
|
+
"@types/node": "*",
|
|
23
|
+
"esbuild-register": ">=3.4.0",
|
|
24
|
+
"ts-node": ">=9.0.0"
|
|
25
|
+
},
|
|
26
|
+
"peerDependenciesMeta": {
|
|
27
|
+
"@types/node": {
|
|
28
|
+
"optional": true
|
|
29
|
+
},
|
|
30
|
+
"esbuild-register": {
|
|
31
|
+
"optional": true
|
|
32
|
+
},
|
|
33
|
+
"ts-node": {
|
|
34
|
+
"optional": true
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@babel/core": "^7.27.4",
|
|
39
|
+
"@pkg-nec/babel-jest": "30.4.1",
|
|
40
|
+
"@pkg-nec/jest-circus": "30.4.2",
|
|
41
|
+
"@pkg-nec/jest-docblock": "30.4.0",
|
|
42
|
+
"@pkg-nec/jest-environment-node": "30.4.1",
|
|
43
|
+
"@pkg-nec/jest-get-type": "30.1.0",
|
|
44
|
+
"@pkg-nec/jest-pattern": "30.4.0",
|
|
45
|
+
"@pkg-nec/jest-regex-util": "30.4.0",
|
|
46
|
+
"@pkg-nec/jest-resolve": "30.4.1",
|
|
47
|
+
"@pkg-nec/jest-runner": "30.4.2",
|
|
48
|
+
"@pkg-nec/jest-test-sequencer": "30.4.1",
|
|
49
|
+
"@pkg-nec/jest-types": "30.4.1",
|
|
50
|
+
"@pkg-nec/jest-util": "30.4.1",
|
|
51
|
+
"@pkg-nec/jest-validate": "30.4.1",
|
|
52
|
+
"@pkg-nec/pretty-format": "30.4.1",
|
|
53
|
+
"chalk": "^4.1.2",
|
|
54
|
+
"ci-info": "^4.2.0",
|
|
55
|
+
"deepmerge": "^4.3.1",
|
|
56
|
+
"glob": "^10.5.0",
|
|
57
|
+
"graceful-fs": "^4.2.11",
|
|
58
|
+
"parse-json": "^5.2.0",
|
|
59
|
+
"slash": "^3.0.0",
|
|
60
|
+
"strip-json-comments": "^3.1.1"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@pkg-nec/jest-test-utils": "30.4.1",
|
|
64
|
+
"@types/graceful-fs": "^4.1.9",
|
|
65
|
+
"@types/parse-json": "^4.0.2",
|
|
66
|
+
"esbuild": "^0.28.0",
|
|
67
|
+
"esbuild-register": "^3.6.0",
|
|
68
|
+
"semver": "^7.7.2",
|
|
69
|
+
"ts-node": "^10.5.0",
|
|
70
|
+
"typescript": "^5.8.3"
|
|
71
|
+
},
|
|
72
|
+
"engines": {
|
|
73
|
+
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
74
|
+
},
|
|
75
|
+
"publishConfig": {
|
|
76
|
+
"access": "public"
|
|
77
|
+
}
|
|
78
|
+
}
|