forked from jim-lake/react-native-orientation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.15 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.15 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@drivetribe/react-native-orientation",
"version": "2.0.3",
"description": "Listen to device orientation changes in react-native and set preferred orientation on screen to screen basis",
"main": "index.js",
"source": "index.js",
"files": [
"index.js",
"android",
"ios",
"react-native-orientation.podspec",
"!android/build",
"!ios/*.xcodeproj",
"!*.DS_Store"
],
"keywords": [
"react-component",
"react-native",
"ios",
"orientation",
"android"
],
"author": "Yamill Vallecillo <yamill@gmail.com>, Digital Tribe Holdings",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/drivetribe/react-native-orientation.git"
},
"bugs": {
"url": "https://github.com/drivetribe/react-native-orientation/issues"
},
"homepage": "https://github.com/drivetribe/react-native-orientation",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"flow": "flow",
"lint": "eslint src/**/*.js",
"check": "npm run lint && npm run flow"
},
"peerDependencies": {
"react-native": "*",
"react": "*"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"flow-bin": "0.113.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"react": "16.11.0",
"react-native": "0.62.2"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"eslintConfig": {
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}
],
"react-native/no-inline-styles": "off"
}
},
"eslintIgnore": [
"node_modules/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}
}