-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.53 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.53 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
{
"name": "@storybook/addon-jest",
"version": "10.0.0",
"description": "Storybook Jest addon: Show Jest report in Storybook's addon panel",
"keywords": [
"jest",
"react",
"report",
"results",
"storybook",
"storybook-addon",
"unit-testing",
"test",
"component",
"components"
],
"homepage": "https://github.com/storybookjs/storybook/tree/next/code/addons/jest",
"bugs": {
"url": "https://github.com/storybookjs/storybook/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/storybook.git",
"directory": "code/addons/jest"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
},
"license": "MIT",
"author": "Renaud Tertrais <renaud.tertrais@gmail.com> (https://github.com/renaudtertrais)",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./manager": "./dist/manager.js",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts",
"!src/**/*"
],
"scripts": {
"check": "tsc --noEmit",
"prep": "tsup",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"changeset": "changeset",
"release": "pnpm run prep && pnpm changeset publish"
},
"dependencies": {
"tiny-invariant": "^1.3.1",
"upath": "^2.0.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.6",
"@types/react": "^19.2.0",
"@storybook/icons": "^1.6.0",
"pkg-pr-new": "^0.0.57",
"@vitest/coverage-v8": "2.1.9",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-resize-detector": "^7.1.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^2.0.0"
},
"peerDependencies": {
"storybook": "^9.0.0 || ^10.0.0 || ^10.0.0-0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "a8e7fd8a655c69780bc20b9749d2699e45beae16",
"storybook": {
"displayName": "Jest",
"icon": "https://pbs.twimg.com/profile_images/821713465245102080/mMtKIMax_400x400.jpg",
"unsupportedFrameworks": [
"react-native"
]
},
"auto": {
"plugins": [
"npm"
]
},
"packageManager": "pnpm@10.11.1+sha512.e519b9f7639869dc8d5c3c5dfef73b3f091094b0a006d7317353c72b124e80e1afd429732e28705ad6bfa1ee879c1fce46c128ccebd3192101f43dd67c667912"
}