-
Notifications
You must be signed in to change notification settings - Fork 514
/
package.json
94 lines (94 loc) · 3.79 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
{
"name": "react-native-interactable",
"version": "2.0.1",
"description": "High performance interactable views in React Native",
"license": "MIT",
"author": "Tal Kol <[email protected]>",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/wix/react-native-interactable/issues"
},
"homepage": "https://github.com/wix/react-native-interactable",
"readme": "https://github.com/wix/react-native-interactable#readme",
"repository": {
"type": "git",
"url": "https://github.com/wix/react-native-interactable.git"
},
"main": "lib/index.js",
"scripts": {
"start": "node ./node_modules/react-native/local-cli/cli.js start",
"ios": "react-native run-ios --project-path playground/ios/",
"android": "react-native run-android --root playground",
"podinstall": "cd playground/ios && pod install",
"test": ":",
"e2e:ios": "detox test --configuration ios.sim.release --debug-synchronization",
"e2e:ios-multi": "npm run e2e:ios -- -w 2",
"e2e:android": "npm run build:android && detox test --configuration android.emu.release --loglevel verbose",
"e2e:android:ci": "npm run build:android && detox test --configuration android.emu.release --loglevel verbose --headless",
"build:ios": "detox build --configuration ios.sim.release",
"build:android": "detox build --configuration android.emu.release"
},
"peerDependencies": {
"react": ">= 15.4.1",
"react-native": ">= 0.40.0"
},
"jest": {
"preset": "react-native"
},
"devDependencies": {
"@babel/core": "7.6.0",
"@babel/runtime": "^7.4.2",
"@react-native-community/eslint-config": "^0.0.3",
"@types/react-native": ">= 0.52.2",
"babel-jest": "^24.5.0",
"detox": "^18.0.0",
"eslint": "^5.16.0",
"jest": "^24.5.0",
"metro-react-native-babel-preset": "^0.53.1",
"mocha": "^6.0.0",
"react": "16.9.0",
"react-native": "0.61.4",
"react-test-renderer": "16.8.3"
},
"typings": "typings/react-native-interactable.d.ts",
"babel": {
"env": {
"test": {
"presets": [
"react-native"
]
}
}
},
"detox_ignore": {
"specs": "e2e",
"configurations": {
"ios.sim.debug": {
"binaryPath": "playground/ios/DerivedData/playground/Build/Products/Debug-iphonesimulator/playground.app",
"build": "RCT_NO_LAUNCH_PACKAGER=true xcodebuild build -scheme playground -project playground/ios/playground.xcodeproj -sdk iphonesimulator -configuration Debug -derivedDataPath playground/ios/DerivedData/playground ONLY_ACTIVE_ARCH=YES -quiet -UseModernBuildSystem=NO",
"type": "ios.simulator",
"name": "iPhone 11 Pro"
},
"ios.sim.release": {
"binaryPath": "playground/ios/DerivedData/playground/Build/Products/Release-iphonesimulator/playground.app",
"build": "RCT_NO_LAUNCH_PACKAGER=true xcodebuild build -scheme playground -project playground/ios/playground.xcodeproj -sdk iphonesimulator -configuration Release -derivedDataPath playground/ios/DerivedData/playground ONLY_ACTIVE_ARCH=YES -quiet -UseModernBuildSystem=NO",
"type": "ios.simulator",
"name": "iPhone 11 Pro"
},
"android.emu.debug": {
"binaryPath": "playground/android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd playground/android && ./gradlew :app:assembleDebug :app:assembleAndroidTest -DtestBuildType=debug",
"type": "android.emulator",
"name": "Pixel_2_API_26"
},
"android.emu.release": {
"binaryPath": "playground/android/app/build/outputs/apk/release/app-release.apk",
"build": "cd playground/android && ./gradlew :app:assembleRelease :app:assembleAndroidTest -DtestBuildType=release",
"type": "android.emulator",
"name": "Pixel_2_API_26"
}
}
}
}