-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
/
package.json
101 lines (101 loc) · 2.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@jest/core",
"description": "Delightful JavaScript Testing.",
"version": "29.3.1",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./package.json": "./package.json"
},
"dependencies": {
"@jest/console": "workspace:^",
"@jest/reporters": "workspace:^",
"@jest/test-result": "workspace:^",
"@jest/transform": "workspace:^",
"@jest/types": "workspace:^",
"@types/node": "*",
"ansi-escapes": "^4.2.1",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"exit": "^0.1.2",
"graceful-fs": "^4.2.9",
"jest-changed-files": "workspace:^",
"jest-config": "workspace:^",
"jest-haste-map": "workspace:^",
"jest-message-util": "workspace:^",
"jest-regex-util": "workspace:^",
"jest-resolve": "workspace:^",
"jest-resolve-dependencies": "workspace:^",
"jest-runner": "workspace:^",
"jest-runtime": "workspace:^",
"jest-snapshot": "workspace:^",
"jest-util": "workspace:^",
"jest-validate": "workspace:^",
"jest-watcher": "workspace:^",
"micromatch": "^4.0.4",
"pretty-format": "workspace:^",
"slash": "^3.0.0",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@jest/test-sequencer": "workspace:^",
"@jest/test-utils": "workspace:^",
"@types/exit": "^0.1.30",
"@types/graceful-fs": "^4.1.3",
"@types/micromatch": "^4.0.1"
},
"peerDependencies": {
"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
"node-notifier": {
"optional": true
}
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git",
"directory": "packages/jest-core"
},
"bugs": {
"url": "https://github.com/facebook/jest/issues"
},
"homepage": "https://jestjs.io/",
"license": "MIT",
"keywords": [
"ava",
"babel",
"coverage",
"easy",
"expect",
"facebook",
"immersive",
"instant",
"jasmine",
"jest",
"jsdom",
"mocha",
"mocking",
"painless",
"qunit",
"runner",
"sandboxed",
"snapshot",
"tap",
"tape",
"test",
"testing",
"typescript",
"watch"
],
"publishConfig": {
"access": "public"
}
}