-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
executable file
·96 lines (96 loc) · 2.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
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
91
92
93
94
95
96
{
"name": "react-native-keyboard-input",
"description": "React Native Custom Input Controller",
"version": "6.0.2",
"main": "src/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/wix/react-native-keyboard-input",
"author": "Leo Natan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wix/react-native-keyboard-input.git"
},
"nativePackage": true,
"keywords": [
"react-native",
"react",
"react-component",
"custom-input",
"input"
],
"bugs": {
"url": "https://github.com/wix/react-native-keyboard-input/issues"
},
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint src -c .eslintrc",
"e2e": "detox test"
},
"dependencies": {
"lodash": "^4.17.4",
"react-native-keyboard-tracking-view": "^5.5.0"
},
"peerDependencies": {
"react": "16.9.0",
"react-native": "0.61.4"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/runtime": "7.7.2",
"babel-eslint": "^7.2.1",
"babel-jest": "24.9.0",
"babel-preset-react-native": "1.9.1",
"detox": "latest",
"eslint": "6.6.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-react-native": "^2.0.0",
"jest": "24.9.0",
"mocha": "^3.3.0",
"react": "16.9.0",
"react-native": "0.61.4",
"react-test-renderer": "16.9.0",
"react-native-autogrow-textinput": "^5.0.0",
"react-native-navigation": "^3.4.0",
"metro-react-native-babel-preset": "0.56.3",
"prop-types": "^15.7.2"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/e2e/",
"/ios/",
"/android/",
"/node_modules/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(spec|test))\\.js?$"
},
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/DerivedData/KeyboardInput/Build/Products/Debug-iphonesimulator/KeyboardInput.app",
"build": "xcodebuild -project ios/KeyboardInput.xcodeproj -scheme KeyboardInput -configuration Debug -sdk iphonesimulator -derivedDataPath ios",
"type": "ios.simulator",
"name": "iPhone 7"
}
}
},
"babel": {
"env": {
"test": {
"presets": [
"react-native"
],
"retainLines": true
}
}
}
}