-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 876 Bytes
/
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
{
"name": "react-media-hoc",
"version": "0.1.0",
"description": "React HOC for media queries",
"main": "lib/index.js",
"keywords": [
"react",
"hoc",
"media",
"queries",
"matchMedia"
],
"author": "Kliment Mamykin",
"license": "ISC",
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/kmamykin/react-media-hoc.git"
},
"scripts": {
"clean": "rm -rf lib",
"compile": "rm -rf lib && babel -d lib src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"peerDependencies": {
"react": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"webpack": "^2.5.1"
},
"dependencies": {
"json2mq": "^0.2.0"
}
}