-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 KB
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
{
"name": "@walrusk/react-responsive-div",
"version": "1.0.2",
"description": "Responsive React container using breakpoints based on container (not viewport) width.",
"homepage": "https://github.com/walrusk/react-responsive-div#readme",
"author": "Rob Norman <walrusk@gmail.com> (https://magnetnet.net)",
"main": "dist/Div.js",
"module": "dist/Div.js",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production && rm -rf dist && mkdir dist && babel src --out-dir dist --copy-files"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
},
"repository": {
"type": "git",
"url": "https://github.com/walrusk/react-responsive-div.git"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"babel": {
"presets": [
"react",
"env",
"stage-2"
]
}
}