-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"version": "1.1.0",
"name": "react-responsive-component",
"description": "A responsive React component that reacts to media queries.",
"keywords": [
"react",
"reactjs",
"responsive"
],
"main": "./lib/index.js",
"license": "MIT",
"scripts": {
"prepublish": "npm run lint && npm run build",
"build": "babel src --out-dir lib",
"lint": "eslint src"
},
"author": "Joe Khoury",
"contributors": "Donavon West <github@donavon.com> (http://donavon.com)",
"dependencies": {
"matchmedia-polyfill": "^0.3.0"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-eslint": "^4.1.8",
"eslint": "^1.3.1",
"eslint-plugin-react": "^3.3.1"
},
"peerDependencies": {
"react": "*",
"prop-types": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/jfkhoury/react-responsive-component.git"
},
"bugs": {
"url": "https://github.com/jfkhoury/react-responsive-component/issues"
},
"homepage": "https://github.com/jfkhoury/react-responsive-component"
}