forked from egdbear/react-simple-matchmedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "react-simple-matchmedia",
"version": "3.1.0",
"description": "React component used for matching media queries",
"main": "build/index.cjs.js",
"module": "build/index.es.js",
"repository": "https://github.com/egdbear/react-simple-matchmedia",
"author": "egdbear <egdfer@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "jest",
"prepublish":"npm run build"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"css-mediaquery": "^0.1.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.5.0",
"jest": "^23.6.0",
"react": "^16.8.0",
"react-dom": "16.8.0",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0"
},
"peerDependencies": {
"react": "^16.8.0"
},
"files": [
"build"
],
"keywords": [
"window.matchMedia",
"react-component",
"react",
"react-simple-matchmedia",
"matchmedia",
"useWindowMedia"
]
}