-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "react-mediaswitch",
"version": "0.2.1",
"description": "Choose your DOM based on media queries",
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"xtend": "~2.2.0"
},
"devDependencies": {
"coffee-script": "~1.7.1",
"browserify": "~3.33.0",
"browserify-shim": "~3.3.2",
"gulp": "~3.5.6",
"gulp-bump": "~0.1.6",
"gulp-coffee": "~1.4.1",
"gulp-util": "~2.2.14",
"gulp-browserify": "~0.5.0",
"gulp-connect": "~1.0.9",
"gulp-rename": "~1.2.0"
},
"peerDependencies": {
"react": "*"
},
"scripts": {
"prepublish": "gulp build",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git://github.com/matthewwithanm/react-mediaswitch.git"
},
"keywords": [
"react-component",
"react",
"media queries",
"media query",
"matchMedia",
"component",
"responsive"
],
"author": "Matthew Dapena-Tretter <m@tthewwithanm.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthewwithanm/react-mediaswitch/issues"
},
"browserify-shim": {
"react": "global:React",
"react/addons": "global:React"
}
}