-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 940 Bytes
/
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
{
"name": "detox-demo-native-ios",
"version": "17.4.3",
"private": true,
"devDependencies": {
"detox": "^17.4.3",
"mocha": "^6.1.3"
},
"detox": {
"specs": "",
"configurations": {
"ios.sim.release": {
"binaryPath": "build/Build/Products/Release-iphonesimulator/NativeExample.app",
"build": "xcodebuild -project NativeExample.xcodeproj -UseNewBuildSystem=NO -scheme NativeExample -configuration Release -sdk iphonesimulator -derivedDataPath build",
"type": "ios.simulator",
"name": "iPhone 11 Pro"
},
"ios.sim.debug": {
"binaryPath": "build/Build/Products/Debug-iphonesimulator/NativeExample.app",
"build": "xcodebuild -project NativeExample.xcodeproj -UseNewBuildSystem=NO -scheme NativeExample -configuration Debug -sdk iphonesimulator -derivedDataPath build",
"type": "ios.simulator",
"name": "iPhone 11 Pro"
}
}
}
}