-
-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.96 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.96 KB
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
102
103
104
105
106
107
{
"name": "jest-styled-components",
"version": "7.4.0",
"description": "Jest utilities for Styled Components",
"type": "commonjs",
"packageManager": "pnpm@10.32.1",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
"files": [
"cache",
"native",
"serializer",
"src",
"typings",
"vitest"
],
"repository": "github:styled-components/jest-styled-components",
"bugs": {
"url": "https://github.com/styled-components/jest-styled-components/issues"
},
"author": "Michele Bertoli",
"maintainers": [
"Evan Jacobs <ej@quantizor.dev> (https://github.com/quantizor)"
],
"license": "MIT",
"scripts": {
"test": "pnpm test:web && pnpm test:native && pnpm test:preact && pnpm test:vitest && pnpm lint:pkg",
"test:web": "jest --color --silent",
"test:web:watch": "jest --watch",
"test:native": "jest --color --silent --config .jest.native.json",
"test:preact": "jest --color --silent --config .jest.preact.json",
"test:vitest": "pnpm --filter vitest-entry test",
"lint:pkg": "publint --pack npm && attw --pack . --quiet",
"prepare": "husky"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.0.0",
"@biomejs/biome": "^2.4.8",
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@changesets/changelog-git": "^0.2.1",
"@changesets/cli": "^2.30.0",
"@testing-library/react": "^12.1.2",
"babel-jest": "^29.7.0",
"enzyme": "^3.6.0",
"enzyme-adapter-preact-pure": "^3.3.0",
"enzyme-to-json": "^3.3.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.5.2",
"preact": "^10.0.0-beta.2",
"preact-render-to-json": "^3.6.6",
"pretty-format": "^29.7.0",
"publint": "^0.3.18",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "~0.71",
"react-test-renderer": "18.2.0",
"styled-components": "^6.0.9"
},
"dependencies": {
"@adobe/css-tools": "^4.4.0"
},
"peerDependencies": {
"styled-components": ">= 5"
},
"lint-staged": {
"{src,native,serializer,vitest,cache}/**/*.js": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"jest": {
"setupFiles": [
"<rootDir>/test/__mocks__/requestAnimationFrame.js"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>/test/native",
"<rootDir>/test/preact",
"<rootDir>/test/vitest"
]
},
"engines": {
"node": ">= 12"
},
"overrides": {
"cheerio": "1.0.0-rc.12"
},
"pnpm": {
"overrides": {
"micromatch": ">=4.0.8",
"braces": ">=3.0.3",
"http-proxy-agent": "^7.0.0",
"hermes-engine": ">=0.10.0"
}
}
}