-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "react-equalize",
"version": "0.0.2",
"description": "equalize the height of your elements in your page",
"main": "dist/react-equalize.js",
"scripts": {
"build": "webpack --mode production",
"storybook": "start-storybook -p 9001",
"docz:dev": "docz dev",
"docz:build": "docz build",
"bundlesize": "bundlesize"
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/neomaxzero/react-equalize.git"
},
"keywords": [
"react",
"equalize",
"height",
"row"
],
"author": "@neomaxzero",
"license": "MIT",
"bugs": {
"url": "https://github.com/neomaxzero/react-equalize/issues"
},
"homepage": "https://github.com/neomaxzero/react-equalize#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.0.0-alpha.20",
"@storybook/react": "^4.1.18",
"@tulipjs/eslint-config": "^1.1.1",
"babel-loader": "^8.0.1",
"bundlesize": "^0.18.0",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"bundlesize": [
{
"path": "./dist/react-equalize.js",
"maxSize": "2 kB"
}
]
}