-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
41
42
43
44
45
46
{
"name": "responsive-react",
"version": "3.0.2",
"description": "Device-type based rendering of react components, like render <SideNav> when desktop and <BottomNav> when mobile or tablet",
"repository": {
"type": "git",
"url": "git+https://github.com/applike/responsive-react.git"
},
"main": "dist/index.js",
"scripts": {
"test": "jest",
"prepublishOnly": "babel ./src --out-dir ./dist -s inline"
},
"keywords": [
"conditional-render",
"breakdown",
"responsive",
"react-component",
"responsive-component",
"react-responsive",
"responsive-react",
"breakpoints",
"device-based-render",
"device-type-based-render",
"screen-size-based-render"
],
"author": "Siddhartha Chowdhury",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"jest": "^24.8.0",
"react": "^16.8.6"
},
"peerDependencies": {
"react": "^16.8.6"
},
"files": [
"dist/*"
]
}