This repository has been archived by the owner on May 16, 2024. It is now read-only.
generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 1.95 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
{
"name": "@storybook/testing-vue",
"version": "0.0.4",
"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-vue"
},
"files": [
"dist",
"src",
"README.md"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"release": "yarn build && auto shipit"
},
"peerDependencies": {
"vue": "^2.0.0",
"@storybook/vue": "^6 || >=6.0.0-0 || >=6.1.0-0 || >=6.2.0-0 || >=6.3.0-0 ",
"@storybook/addons": "^6 || >=6.0.0-0 || >=6.1.0-0 || >=6.2.0-0 || >=6.3.0-0 ",
"@storybook/client-api": "^6 || >=6.0.0-0 || >=6.1.0-0 || >=6.2.0-0 || >=6.3.0-0 "
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"author": "yannbf@gmail.com",
"module": "dist/testing-vue.esm.js",
"size-limit": [
{
"path": "dist/testing-vue.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/testing-vue.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@cypress/vue": "^2.2.3",
"@size-limit/preset-small-lib": "^4.10.1",
"@storybook/addons": "~6.3.0",
"@storybook/client-api": "~6.3.0",
"@storybook/vue": "~6.3.0",
"auto": "^10.20.4",
"concurrently": "^6.0.0",
"husky": "^5.1.3",
"size-limit": "^4.10.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3",
"vue": "^2.6.12"
},
"resolutions": {
"**/typescript": "^4.2.3"
},
"publishConfig": {
"access": "public"
}
}