forked from wix-incubator/react-native-keyboard-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·90 lines (90 loc) · 2.32 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
{
"name": "react-native-keyboard-input",
"description": "React Native Custom Input Controller",
"version": "5.2.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": {
"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.4.3"
},
"peerDependencies": {
"react": "~16.0.0",
"react-native": "^0.51.0"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"babel-jest": "^18.0.0",
"babel-preset-react-native": "1.9.1",
"detox": "latest",
"eslint": "^3.0.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": "^18.1.0",
"mocha": "^3.3.0",
"react": "16.0.0",
"react-native": "^0.51.0",
"react-native-autogrow-textinput": "^5.0.0",
"react-native-blur": "^3.0.0",
"react-native-navigation": "^1.1.70"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/e2e/",
"/ios/",
"/android/",
"/node_modules/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(spec|test))\\.js?$"
},
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/DerivedData/AwesomeProject/Build/Products/Debug-iphonesimulator/AwesomeProject.app",
"build": "xcodebuild -project ios/AwesomeProject.xcodeproj -scheme AwesomeProject -configuration Debug -sdk iphonesimulator -derivedDataPath ios",
"type": "ios.simulator",
"name": "iPhone 7"
}
}
},
"babel": {
"env": {
"test": {
"presets": [
"react-native"
],
"retainLines": true
}
}
}
}