UNPKG

react-native-zip-archive

Version:

A TurboModule wrapper on ZipArchive for React Native's New Architecture

65 lines (64 loc) 1.84 kB
{ "name": "react-native-zip-archive", "version": "8.0.1", "description": "A TurboModule wrapper on ZipArchive for React Native's New Architecture", "main": "index.js", "scripts": { "test": "jest", "lint": "eslint index.js", "test:e2e:expo:ios": "./scripts/e2e-ios.sh", "test:e2e:expo:android": "./scripts/e2e-android.sh", "test:e2e:expo": "npm run test:e2e:expo:android && npm run test:e2e:expo:ios", "test:e2e:rn:ios": "./scripts/e2e-ios.sh --rn", "test:e2e:rn:android": "./scripts/e2e-android.sh --rn", "test:e2e:rn": "npm run test:e2e:rn:android && npm run test:e2e:rn:ios", "test:e2e": "npm run test:e2e:expo && npm run test:e2e:rn" }, "repository": { "type": "git", "url": "git@github.com:mockingbot/react-native-zip-archive.git" }, "keywords": [ "react-native", "ios", "android", "zip", "archive", "zip-archive", "unzip" ], "author": "Perry Poon <plrthink@gmail.com> (https://github.com/plrthink)", "homepage": "https://github.com/mockingbot/react-native-zip-archive", "license": "MIT", "devDependencies": { "@babel/core": "*", "@babel/preset-env": "^7.29.2", "@react-native-community/eslint-config": "^2.0.0", "eslint": "^6.7.2", "jest": "^29.0.0", "react": ">=18.0.0", "react-native": ">=0.70.0" }, "jest": { "testEnvironment": "node", "modulePathIgnorePatterns": [ "<rootDir>/playground-expo/", "<rootDir>/playground-rn/" ], "transformIgnorePatterns": [ "node_modules/(?!react-native)/" ] }, "peerDependencies": { "react": ">=18.0.0", "react-native": ">=0.70.0" }, "codegenConfig": { "name": "NativeZipArchiveSpec", "type": "modules", "jsSrcsDir": "specs", "android": { "javaPackageName": "com.rnziparchive" } } }