- The test script just does an eslint check. (Closes #121) - Refactored JS code to pass the check. - Fixed VideoPlayer example. (Closes #117) - Updated package.json to use local react-native-video in a simple manner. - Added shared scheme for target. - Updated poject settings. - Now using react-native 0.18.1.
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  "name": "react-native-video",
 | 
						|
  "version": "0.6.1",
 | 
						|
  "description": "A <Video /> element for react-native",
 | 
						|
  "main": "Video.js",
 | 
						|
  "author": "Brent Vatne <brentvatne@gmail.com> (https://github.com/brentvatne)",
 | 
						|
  "files": [
 | 
						|
    "android/build.gradle",
 | 
						|
    "android/RCTVideo.iml",
 | 
						|
    "android/src/main/AndroidManifest.xml",
 | 
						|
    "android/src/main/res/values/styles.xml",
 | 
						|
    "android/src/main/java/com/brentvatne/react/ReactVideoPackage.java",
 | 
						|
    "android/src/main/java/com/brentvatne/react/ReactVideoViewManager.java",
 | 
						|
    "android/src/main/java/com/brentvatne/react/ReactVideoView.java",
 | 
						|
    "RCTVideo.xcodeproj",
 | 
						|
    "RCTVideo.h",
 | 
						|
    "RCTVideo.m",
 | 
						|
    "RCTVideoManager.h",
 | 
						|
    "RCTVideoManager.m",
 | 
						|
    "README.md",
 | 
						|
    "Video.js",
 | 
						|
    "VideoResizeMode.js"
 | 
						|
  ],
 | 
						|
  "contributors": [
 | 
						|
    {
 | 
						|
      "name": "Johannes Lumpe",
 | 
						|
      "email": "johannes@lum.pe"
 | 
						|
    },
 | 
						|
    {
 | 
						|
      "name": "Baris Sencan",
 | 
						|
      "email": "baris.sncn@gmail.com"
 | 
						|
    }
 | 
						|
  ],
 | 
						|
  "repository": {
 | 
						|
    "type": "git",
 | 
						|
    "url": "git@github.com:brentvatne/react-native-video.git"
 | 
						|
  },
 | 
						|
  "devDependencies": {
 | 
						|
    "jest-cli": "0.2.1",
 | 
						|
    "eslint": "1.10.3",
 | 
						|
    "babel-eslint": "5.0.0-beta8",
 | 
						|
    "eslint-plugin-react": "3.16.1",
 | 
						|
    "eslint-config-airbnb": "4.0.0"
 | 
						|
  },
 | 
						|
  "dependencies": {
 | 
						|
    "keymirror": "0.1.1"
 | 
						|
  },
 | 
						|
  "scripts": {
 | 
						|
    "test": "node_modules/.bin/eslint *.js"
 | 
						|
  }
 | 
						|
}
 |