forked from yocontra/react-responsive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.93 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.93 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-responsive",
"description": "Media queries in react for responsive design",
"version": "1.1.3",
"homepage": "http://github.com/wearefractal/react-responsive",
"repository": {
"type": "git",
"url": "git://github.com/wearefractal/react-responsive.git"
},
"author": "Fractal <contact@wearefractal.com> (http://wearefractal.com/)",
"main": "./src/index.js",
"keywords": [
"css",
"react-component",
"viewport",
"react",
"mobile",
"media queries",
"respond",
"media query",
"matchMedia",
"responsive",
"component"
],
"dependencies": {
"hyphenate-style-name": "^1.0.0",
"matchmedia": "^0.1.2",
"object-assign": "^4.0.1"
},
"peerDependencies": {
"react": "^0.12.0 || ^0.13.0 || ^0.14.0 || ^15.0.0"
},
"devDependencies": {
"browserify": "^12.0.1",
"chai": "^3.5.0",
"ecstatic": "^1.4.0",
"gulp": "^3.9.0",
"gulp-autowatch": "1.0.2",
"gulp-cached": "^1.1.0",
"gulp-gh-pages": "^0.5.4",
"gulp-jshint": "^2.0.0",
"gulp-livereload": "^3.8.1",
"gulp-sourcemaps": "^1.6.0",
"jsdom": "^8.4.0",
"jshint": "^2.x",
"jshint-stylish": "^2.1.0",
"merge-stream": "^1.0.0",
"mocha": "^2.4.5",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^0.14.0 || ^15.0.0",
"react-tools": "^0.13.3",
"reactify": "^1.1.1",
"should": "^8.0.2",
"sinon": "^1.17.3",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.6.1"
},
"scripts": {
"lint": "jshint ./src --reporter=node_modules/jshint-stylish --exclude node_modules",
"test": "NODE_PATH=$NODE_PATH:$PWD/src $(npm bin)/mocha -R dot --compilers .:test/compiler.js --require ./test/setup.js test/*_test.js"
},
"engines": {
"node": ">= 0.10"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/wearefractal/react-responsive/raw/master/LICENSE"
}
]
}