forked from wix/Detox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1.1 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
{
"name": "example",
"version": "17.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"postinstall": "node scripts/postinstall.js",
"build:ios": "detox build --configuration ios.sim.debug",
"build:android-debug": "detox build --configuration android.emu.debug",
"build:android-release": "detox build --configuration android.emu.release",
"test:ios": "detox test --configuration ios.sim.debug",
"test:android-debug": "detox test --configuration android.emu.debug",
"test:android-release": "detox test --configuration android.emu.release",
"test:android-release-ci": "detox test --configuration android.emu.release -l verbose --headless --record-logs all --take-screenshots all",
"e2e:ios": "npm run build:ios && npm run test:ios",
"e2e:android-debug": "npm run build:android-debug && npm run test:android-debug",
"e2e:android-release": "npm run build:android-release && npm run test:android-release"
},
"dependencies": {
"react": "16.11.x",
"react-native": "0.62.x"
},
"devDependencies": {
"detox": "^17.0.1",
"mocha": "^6.1.3"
}
}