From bd10d565e5ca8dcfc041a713ab0bfde58eba5574 Mon Sep 17 00:00:00 2001 From: Bartol Karuza Date: Sun, 24 Feb 2019 12:38:20 +0800 Subject: [PATCH] update package.json with basic info and dependencies mostly copied from https://github.com/react-native-community/react-native-netinfo/blob/master/package.json --- package.json | 51 +++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 43 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 8ffcff33f..982bd5e88 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,8 @@ { - "name": "react-native-cameraroll", + "name": "@react-native-community/cameraroll", + "author": "Bartol Karuza ", + "homepage": "https://github.com/react-native-community/react-native-cameraroll#readme", "version": "1.0.0", "description": "", "main": "index.js", @@ -9,19 +11,52 @@ "test": "jest" }, "keywords": [ - "react-native" + "react-native", + "react native", + "cameraroll", + "camera", + "photo gallery" ], - "author": "", - "license": "", + "license": "MIT", "peerDependencies": { - "react": "16.6.3", - "react-native": "0.58.4" + "react": "^16.0", + "react-native": ">=0.57 <0.59" }, "devDependencies": { + "@babel/core": "^7.0.0", + "@semantic-release/git": "7.0.5", "babel-core": "^7.0.0-bridge.0", - "babel-jest": "24.1.0", + "babel-eslint": "^10.0.1", + "babel-jest": "^24.1.0", + "babel-plugin-module-resolver": "^3.1.3", + "detox": "^10.0.7", + "eslint": "5.13.0", + "eslint-plugin-eslint-comments": "^3.0.1", + "eslint-plugin-flowtype": "3.2.1", + "eslint-plugin-jest": "22.2.2", + "eslint-plugin-prettier": "3.0.1", + "eslint-plugin-react": "7.12.4", + "eslint-plugin-react-hooks": "^1.0.1", + "eslint-plugin-react-native": "3.6.0", + "flow-bin": "^0.86.0", "jest": "24.1.0", "metro-react-native-babel-preset": "0.51.1", - "react-test-renderer": "16.6.3" + "prettier": "^1.16.4", + "react": "16.6.3", + "react-native": "0.58.4", + "react-test-renderer": "16.6.3", + "rimraf": "^2.6.3", + "semantic-release": "15.10.3", + "typescript": "^3.3.3" + }, + "jest": { + "preset": "react-native", + "setupFilesAfterEnv": [ + "/jest.setup.js" + ] + }, + "repository": { + "type": "git", + "url": "https://github.com/react-native-community/react-native-cameraroll.git" } }