This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
104 lines (104 loc) · 2.39 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
102
103
104
{
"name": "@storybook/testing-react",
"version": "2.0.0",
"description": "Testing utilities that allow you to reuse your stories in your unit tests",
"keywords": [
"storybook-addons",
"style",
"test"
],
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/testing-react"
},
"files": [
"dist",
"src",
"README.md"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "yarn build && yarn --cwd example test --watchAll=false",
"test:watch": "yarn --cwd example test --watchAll",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"release": "yarn build && auto shipit"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"author": "[email protected]",
"module": "dist/testing-react.esm.js",
"size-limit": [
{
"path": "dist/testing-react.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/testing-react.esm.js",
"limit": "10 KB"
}
],
"dependencies": {
"@storybook/csf": "^0.1.0"
},
"devDependencies": {
"@auto-it/conventional-commits": "^10.31.0",
"@auto-it/first-time-contributor": "^10.31.0",
"@auto-it/released": "^10.31.0",
"@size-limit/preset-small-lib": "^4.10.1",
"@storybook/client-logger": "future",
"@storybook/preview-api": "future",
"@storybook/react": "future",
"@storybook/types": "future",
"@types/react": "17",
"auto": "^10.31.0",
"concurrently": "^6.0.0",
"husky": "^5.1.3",
"react": "^17.0.2",
"size-limit": "^4.10.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.9.3"
},
"peerDependencies": {
"@storybook/client-logger": "future",
"@storybook/preview-api": "future",
"@storybook/react": "future",
"@storybook/types": "future",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"publishConfig": {
"access": "public"
},
"auto": {
"prereleaseBranches": [
"next",
"prerelease",
"future"
],
"plugins": [
"npm",
"conventional-commits",
"first-time-contributor",
"released"
]
}
}