react-native-cameraroll/package.json

103 lines
4.6 KiB
JSON
Raw Normal View History

{
"name": "@react-native-community/cameraroll",
"author": "Bartol Karuza <bartol.k@gmail.com>",
"homepage": "https://github.com/react-native-community/react-native-cameraroll#readme",
2019-03-03 12:36:01 +00:00
"version": "1.0.3",
"description": "",
"main": "./js/CameraRoll.js",
2019-04-03 11:20:54 +00:00
"types": "./typings/CameraRoll.d.ts",
"scripts": {
"start": "react-native start",
"test": "yarn validate:eslint && yarn validate:flow && yarn validate:typescript && yarn test:jest",
"validate:eslint": "eslint 'js/**/*.js' 'example/**/*.js'",
"validate:flow": "flow check",
"validate:typescript": "tsc --project ./",
"test:jest": "jest js/",
2019-03-02 08:00:53 +00:00
"test:detox:android:test:debug": "detox test -c android.emu.debug",
"test:detox:android:test:release": "detox test -c android.emu.release",
"test:detox:android:build:debug": "detox build -c android.emu.debug",
"test:detox:android:build:release": "detox build -c android.emu.release",
"test:detox:android:bundle:release": "mkdir -p .tmp && react-native bundle --max-workers 4 --platform android --dev false --entry-file example/index.js --bundle-output .tmp/android-bundle.js",
"test:detox:ios:test:debug": "detox test -c ios.sim.debug",
"test:detox:ios:test:release": "detox test -c ios.sim.release",
"test:detox:ios:build:debug": "detox build -c ios.sim.debug",
"test:detox:ios:build:release": "detox build -c ios.sim.release",
"test:detox:ios:bundle:release": "mkdir -p .tmp && react-native bundle --max-workers 4 --platform ios --dev false --entry-file example/index.js --bundle-output .tmp/ios-bundle.js",
"test:detox:clean": "rimraf example/android/build && rimraf example/android/app/build && rimraf example/android/.gradle && rimraf example/ios/build",
"ci:publish": "yarn semantic-release",
"semantic-release": "semantic-release"
},
"keywords": [
"react-native",
"react native",
"cameraroll",
"camera",
"photo gallery"
],
"license": "MIT",
"peerDependencies": {
"react": "^16.0",
"react-native": ">=0.57 <0.59"
},
"devDependencies": {
2019-04-06 10:17:01 +00:00
"@babel/core": "^7.4.3",
2019-04-06 00:13:56 +00:00
"@react-native-community/eslint-config": "^0.0.3",
2019-04-06 10:17:01 +00:00
"@semantic-release/git": "7.0.8",
"babel-core": "^7.0.0-bridge.0",
2019-04-06 10:17:01 +00:00
"babel-jest": "^24.7.0",
"babel-plugin-module-resolver": "^3.2.0",
"detox": "^12.1.2",
"eslint": "5.16.0",
"flow-bin": "^0.86.0",
2019-04-06 10:17:01 +00:00
"jest": "24.7.0",
"metro-react-native-babel-preset": "0.51.1",
"prettier": "^1.16.4",
"react": "16.6.3",
"react-native": "0.58.4",
"react-test-renderer": "16.6.3",
"rimraf": "^2.6.3",
2019-04-06 10:17:01 +00:00
"semantic-release": "15.13.3",
"typescript": "^3.4.1"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
},
2019-03-02 08:00:53 +00:00
"detox": {
"test-runner": "jest",
"runner-config": "example/e2e/config.json",
"configurations": {
"ios.sim.debug": {
"binaryPath": "example/ios/build/Build/Products/Debug-iphonesimulator/CameraRollExample.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -project example/ios/CameraRollExample.xcodeproj -destination 'platform=iOS Simulator,name=iPhone X' -scheme CameraRollExample -parallelizeTargets -configuration Debug -derivedDataPath example/ios/build -UseModernBuildSystem=YES | xcpretty -k",
"type": "ios.simulator",
"name": "iPhone X"
},
"ios.sim.release": {
"binaryPath": "example/ios/build/Build/Products/Release-iphonesimulator/CameraRollExample.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -project example/ios/CameraRollExample.xcodeproj -destination 'platform=iOS Simulator,name=iPhone X' -scheme CameraRollExample -parallelizeTargets -configuration Release -derivedDataPath example/ios/build -UseModernBuildSystem=YES | xcpretty -k",
"type": "ios.simulator",
"name": "iPhone X"
},
"android.emu.debug": {
"binaryPath": "example/android/app/build/outputs/apk/debug/app-debug.apk",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && pushd example/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && popd",
"type": "android.emulator",
"name": "TestingAVD"
},
"android.emu.release": {
"binaryPath": "example/android/app/build/outputs/apk/release/app-release.apk",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && pushd example/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && popd",
"type": "android.emulator",
"name": "TestingAVD"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/react-native-cameraroll.git"
}
}