mirror of
https://github.com/zoriya/react-native-background-downloader.git
synced 2025-12-06 06:56:10 +00:00
89 lines
2.4 KiB
JSON
89 lines
2.4 KiB
JSON
{
|
|
"name": "@kesha-antonov/react-native-background-downloader",
|
|
"version": "2.7.2",
|
|
"description": "A library for React-Native to help you download large files on iOS and Android both in the foreground and most importantly in the background.",
|
|
"keywords": [
|
|
"react-native",
|
|
"background",
|
|
"download",
|
|
"large files"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/kesha-antonov/react-native-background-downloader.git"
|
|
},
|
|
"homepage": "https://github.com/kesha-antonov/react-native-background-downloader",
|
|
"license": "Apache-2.0",
|
|
"author": {
|
|
"name": "Eko labs",
|
|
"email": "dev@helloeko.com",
|
|
"url": "https://developer.helloeko.com"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Elad Gil"
|
|
}
|
|
],
|
|
"main": "index.ts",
|
|
"types": "index.d.ts",
|
|
"files": [
|
|
"README.md",
|
|
"LICENSE",
|
|
"react-native-background-downloader.podspec",
|
|
"package.json",
|
|
"index.d.ts",
|
|
"index.js",
|
|
"lib/",
|
|
"ios/",
|
|
"android/build.gradle",
|
|
"android/src/"
|
|
],
|
|
"scripts": {
|
|
"bump": "npm version patch",
|
|
"lint": "eslint .",
|
|
"prepublishOnly": "jest && npm run lint",
|
|
"publish": "npm publish",
|
|
"test": "jest"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": "eslint --cache"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native",
|
|
"setupFiles": [
|
|
"./__mocks__/RNBackgroundDownloader.js",
|
|
"./node_modules/react-native/Libraries/EventEmitter/__mocks__/NativeEventEmitter.js"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.22.9",
|
|
"@babel/eslint-parser": "^7.22.9",
|
|
"@babel/preset-env": "^7.22.9",
|
|
"@babel/runtime": "^7.22.6",
|
|
"@react-native-community/eslint-config": "^3.2.0",
|
|
"babel-jest": "^29.6.1",
|
|
"eslint": "8.44.0",
|
|
"eslint-config-standard": "^17.1.0",
|
|
"eslint-config-standard-jsx": "^11.0.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-n": "^16.0.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-standard": "^5.0.0",
|
|
"immer": "^10.0.2",
|
|
"jest": "^29.6.1",
|
|
"lint-staged": ">=13",
|
|
"metro-react-native-babel-preset": "^0.77.0",
|
|
"react": "18.2.0",
|
|
"react-native": "0.72.3",
|
|
"react-native-fs": "^2.20.0",
|
|
"react-native-vector-icons": "^9.2.0",
|
|
"react-test-renderer": "18.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react-native": ">=0.57.0"
|
|
}
|
|
}
|