forked from rebassjs/rebass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.34 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
{
"private": true,
"scripts": {
"prepare": "lerna run prepare",
"bootstrap": "lerna bootstrap",
"start": "yarn workspace docs start",
"build": "yarn workspace docs build",
"test": "jest",
"cover": "npx codecov"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@emotion/jest": "^11.10.0",
"@testing-library/react": "^12.0.0",
"babel-plugin-transform-rename-import": "^2.3.0",
"jest": "^29.0.1",
"jest-styled-components": "^7.1.0",
"lerna": "^5.4.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2"
},
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"**/packages/**/test/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"lcov",
"text",
"html"
],
"collectCoverageFrom": [
"packages/**/src/*.js",
"!packages/docs/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"setupFilesAfterEnv": [],
"snapshotSerializers": [
"@emotion/jest/serializer"
]
},
"dependencies": {
"jest-environment-jsdom": "^29.0.1"
}
}