forked from AlixH/react-native-responsive-stylesheet
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 979 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
{
"name": "react-native-responsive-stylesheet",
"version": "1.1.0",
"description": "React-native library for creating stylesheets that return different styles based on screen size",
"main": "index.js",
"scripts": {
"test": "node tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RangerMauve/react-native-responsive-stylesheet.git"
},
"keywords": [
"react",
"native",
"responsive",
"media",
"query",
"size",
"style",
"stylesheet"
],
"author": "rangermauve",
"license": "MIT",
"bugs": {
"url": "https://github.com/RangerMauve/react-native-responsive-stylesheet/issues"
},
"homepage": "https://github.com/RangerMauve/react-native-responsive-stylesheet#readme",
"peerDependencies": {
"react-native": "*"
},
"devDependencies": {
"eslint": "^3.18.0",
"eslint-plugin-node": "^4.2.2",
"tape": "^4.6.3"
},
"dependencies": {
"mock-require": "^2.0.1"
}
}