forked from TheWidlarzGroup/react-native-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.31 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
{
"name": "VideoPlayer",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "react-native start",
"postinstall": "rm -rf node_modules/react-native-video/{examples,node_modules}",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test:unit": "jest --testMatch=\"**/__tests__/**/!(*e2e.js)\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"build:android": "adb uninstall com.videoplayer && react-native run-android --variant=release",
"build:ios": "xcodebuild -workspace ios/VideoPlayer.xcworkspace -configuration Debug -scheme VideoPlayer -destination 'platform=iOS Simulator,name=iPhone 11' -derivedDataPath \"./ios/build\"",
"appium": "appium",
"test:e2e": "jest --testMatch=\"**/__tests__/**/*e2e.js\""
},
"dependencies": {
"appium": "^1.20.2",
"appium-doctor": "^1.16.0",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-video": "file:../..",
"wd": "^1.14.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"babel-jest": "^25.1.0",
"eslint": "^6.5.1",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.59.0",
"react-test-renderer": "16.13.1"
},
"jest": {
"preset": "react-native"
}
}