-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathpackage.json
43 lines (43 loc) · 926 Bytes
/
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
{
"name": "@wordpress/jest-console",
"version": "4.0.1",
"description": "Custom Jest matchers for the Console object.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"gutenberg",
"jest",
"matchers",
"console"
],
"homepage": "https://github.com/WordPress/gutenberg/tree/HEAD/packages/jest-console/README.md",
"repository": {
"type": "git",
"url": "https://github.com/WordPress/gutenberg.git",
"directory": "packages/jest-console"
},
"bugs": {
"url": "https://github.com/WordPress/gutenberg/issues"
},
"engines": {
"node": ">=12"
},
"files": [
"build",
"build-module"
],
"main": "build/index.js",
"module": "build-module/index.js",
"dependencies": {
"@babel/runtime": "^7.12.5",
"jest-matcher-utils": "^26.6.2",
"lodash": "^4.17.19"
},
"peerDependencies": {
"jest": ">=26"
},
"publishConfig": {
"access": "public"
}
}