forked from wix-incubator/react-native-interactable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.38 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
{
"name": "react-native-interactive",
"version": "0.1.14",
"description": "High performance interactive view for React Native",
"license": "MIT",
"author": "woodpav <devwoodpav@gmail.com>",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/woodpav/react-native-interactive/issues"
},
"homepage": "https://github.com/woodpav/react-native-interactive",
"repository": {
"type": "git",
"url": "git+https://github.com/woodpav/react-native-interactive.git"
},
"main": "lib/index.js",
"scripts": {
"start": "node ./node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"run-android": "rn run-android --root playground",
"bundle-android": "react-native bundle --platform android --dev false --entry-file playground/index.js --bundle-output playground/android/app/src/main/assets/index.android.bundle --assets-dest playground/android/app/src/main/res"
},
"dependencies": {
"react": "^16.7.0",
"react-native": "^0.57.8"
},
"peerDependencies": {
"react": ">= 15.4.1",
"react-native": ">= 0.40.0"
},
"jest": {
"preset": "jest-react-native"
},
"devDependencies": {
"@types/react-native": ">= 0.52.2",
"babel-jest": "18.0.0",
"detox": "^9.0.5",
"jest": "22.x.x",
"metro-react-native-babel-preset": "^0.51.0",
"mocha": "^5.0.5",
"react-test-renderer": "16.2.0"
},
"typings": "typings/react-native-interactive.d.ts",
"detox": {
"test-runner": "mocha",
"specs": "e2e",
"runner-config": "e2e/mocha.opts",
"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",
"type": "ios.simulator",
"name": "iPhone 7"
},
"android.emu.debug": {
"binaryPath": "playground/android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd playground/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug",
"type": "android.emulator",
"name": "Nexus_5X_API_26"
}
}
},
"directories": {
"lib": "lib"
}
}