forked from oceanbit/react-native-responsive-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.38 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "react-native-responsive-ui",
"version": "0.0.0-development",
"main": "lib/index.js",
"description": "Responsive UIs for React Native",
"author": "William Candillon <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/wcandillon/react-native-responsive-ui.git"
},
"bugs": {
"url": "https://github.com/wcandillon/react-native-responsive-ui/issues"
},
"homepage": "https://github.com/wcandillon/react-native-responsive-ui#readme",
"keywords": [
"react",
"react-native",
"responsive",
"responsive",
"design",
"media-query",
"media"
],
"devDependencies": {
"autobind-decorator": "^1.4.1",
"babel-eslint": "^7.2.3",
"condition-circle": "^1.5.0",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-react": "^6.10.3",
"exp": "^40.0.2",
"flow-bin": "^0.40.0",
"jest-expo": "^0.4.0",
"react-native-scripts": "0.0.28",
"react-navigation": "^1.0.0-beta.11",
"react-test-renderer": "16.0.0-alpha.6",
"semantic-release": "^6.3.6",
"@expo/vector-icons": "^4.0.0",
"expo": "^16.0.0",
"jest-junit-reporter": "^1.1.0"
},
"scripts": {
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "node node_modules/jest/bin/jest.js",
"test:watch": "node node_modules/jest/bin/jest.js --watch",
"flow": "flow",
"lint": "eslint App.js App.test.js example/ lib/",
"release": "semantic-release pre && npm publish && semantic-release post"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation|expo|@expo|native-base-shoutem-theme|@shoutem|react-clone-referenced-element)"
],
"testResultsProcessor": "./node_modules/jest-junit-reporter"
},
"dependencies": {
"lodash": "^4.17.4"
},
"peerDependencies": {
"react": "16.0.0-alpha.6",
"react-native": "^0.43.4"
},
"release": {
"verifyConditions": "condition-circle"
}
}