This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
66 lines (66 loc) · 1.74 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
{
"name": "react-storybook-addon-props-combinations",
"version": "1.1.0",
"description": "Props Combinations addon for React Storybook",
"main": "dist/index.js",
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"build-storybook": "build-storybook -c .storybook -o .out",
"deploy-storybook": "storybook-to-ghpages",
"transpile": "babel --plugins \"transform-runtime\" ./src --out-dir ./dist --ignore test.js",
"prepublish": "rm -rf ./dist && npm run transpile",
"postpublish": "npm run deploy-storybook",
"test": "ava"
},
"ava": {
"files": [
"./src/**/*.test.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"keywords": [
"react",
"storybook",
"react-storybook",
"addon",
"plugin"
],
"author": "Evgeny Kochetkov",
"repository": {
"type": "git",
"url": "https://github.com/evgenykochetkov/react-storybook-addon-props-combinations.git"
},
"license": "ISC",
"devDependencies": {
"@storybook/addon-actions": "^3.2.12",
"@storybook/react": "^3.2.12",
"@storybook/storybook-deployer": "^2.0.0",
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"preact": "^7.2.1",
"preact-compat": "^3.17.0",
"prop-types": "^15.6.0",
"react": "^15.6.2",
"react-dom": "^15.6.2"
},
"dependencies": {
"object-hash": "^1.1.8",
"pretty-format": "^21.2.1"
},
"peerDependencies": {
"react": "^15.x || ^16.x"
},
"engines": {
"npm": ">=3.0.0"
}
}