generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
87 lines (87 loc) · 2.6 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
{
"name": "@storybook/addon-coverage",
"version": "1.0.4",
"description": "Tools to support code coverage in Storybook",
"keywords": [
"storybook-addons",
"coverage",
"test",
"testing",
"test-runner",
"storybook-addons"
],
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/addon-coverage"
},
"author": "Yann Braga <[email protected]>",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/ts/types.d.ts",
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"clean": "rimraf ./dist",
"buildBabel": "concurrently \"yarn buildBabel:cjs\" \"yarn buildBabel:esm\"",
"buildBabel:cjs": "babel ./src -d ./dist/cjs --extensions \".js,.jsx,.ts,.tsx\"",
"buildBabel:esm": "babel ./src -d ./dist/esm --env-name esm --extensions \".js,.jsx,.ts,.tsx\"",
"buildTsc": "tsc --declaration --emitDeclarationOnly --outDir ./dist/ts",
"prebuild": "yarn clean",
"build": "concurrently \"yarn buildBabel\" \"yarn buildTsc\"",
"build:watch": "concurrently \"yarn buildBabel:cjs -- --watch\" \"yarn buildTsc -- --watch\"",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "yarn build:watch",
"release": "yarn build && auto shipit"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/preset-typescript": "^7.13.0",
"@storybook/core-common": "^7.0.0-alpha.34",
"@types/convert-source-map": "^2.0.3",
"@types/istanbul-lib-instrument": "^1.7.7",
"@types/test-exclude": "^6.0.2",
"auto": "^11.1.1",
"concurrently": "^6.2.0",
"prettier": "^2.3.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.4",
"vite": "^3.1.0",
"webpack": "^5.89.0"
},
"publishConfig": {
"access": "public"
},
"storybook": {
"displayName": "Addon coverage",
"supportedFrameworks": [
"react",
"preact",
"vue",
"web-components",
"html",
"svelte"
],
"icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png"
},
"dependencies": {
"@istanbuljs/load-nyc-config": "^1.1.0",
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@types/istanbul-lib-coverage": "^2.0.4",
"convert-source-map": "^2.0.0",
"espree": "^9.6.1",
"istanbul-lib-instrument": "^6.0.1",
"test-exclude": "^6.0.0",
"vite-plugin-istanbul": "^3.0.1"
}
}