forked from markuswind/react-native-select-input-ios
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "react-native-select-input-ios",
"version": "2.0.5",
"description": "A React Native SelectInput for iOS and Android, which uses a keyboard with a Picker component",
"author": "Markus Wind",
"license": "MIT",
"homepage": "https://github.com/markuswind/react-native-select-input-ios#readme",
"bugs": {
"url": "https://github.com/markuswind/react-native-select-input-ios/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markuswind/react-native-select-input-ios.git"
},
"keywords": [
"ReactNative",
"Select",
"SelectInput",
"SelectInputIOS",
"SelectInputAndroid",
"Picker",
"PickerIOS",
"PickerAndroid",
"CustomKeyboard"
],
"main": "./src/index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint **/*.js",
"test": "./node_modules/.bin/jest"
},
"jest": {
"preset": "react-native",
"automock": false,
"testMatch": [
"<rootDir>/src/**/__tests__/*.spec.js"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"<rootDir>/node_modules",
"<rootDir>/src"
]
},
"devDependencies": {
"babel-eslint": "*",
"babel-preset-react-native": "*",
"eslint": "*",
"eslint-config-prettier": "*",
"eslint-plugin-prettier": "*",
"eslint-plugin-react": "*",
"jest": "*",
"prettier": "*",
"react": "16.5.0",
"react-native": "0.57.2",
"react-test-renderer": "*"
},
"dependencies": {
"@react-native-picker/picker": "^2.2.1"
}
}