mirror of
https://github.com/zoriya/react-native-background-downloader.git
synced 2026-06-07 03:25:04 +00:00
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"name": "react-native-background-downloader",
|
|
"version": "1.0.0",
|
|
"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.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"prepublish": "jest && npm run lint",
|
|
"lint": "eslint index.js lib/**"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/EkoLabs/react-native-background-downloader.git"
|
|
},
|
|
"keywords": [
|
|
"react-native",
|
|
"background",
|
|
"download",
|
|
"large files"
|
|
],
|
|
"files": [
|
|
"README.md",
|
|
"LICENSE",
|
|
"package.json",
|
|
"index.js",
|
|
"lib/",
|
|
"ios/",
|
|
"android/build.gradle",
|
|
"android/src/"
|
|
],
|
|
"author": {
|
|
"name": "Eko labs",
|
|
"url": "https://developer.helloeko.com",
|
|
"email": "dev@helloeko.com"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Elad Gil"
|
|
}
|
|
],
|
|
"license": "Apache-2.0",
|
|
"peerDependencies": {
|
|
"react-native": ">=0.41.2"
|
|
},
|
|
"devDependencies": {
|
|
"babel-eslint": "^8.2.5",
|
|
"eslint": "^4.19.1",
|
|
"jest": "^23.1.0",
|
|
"react-native": "^0.55.4"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native",
|
|
"setupFiles": [
|
|
"./__mocks__/RNBackgroundDownload.js",
|
|
"./node_modules/react-native/Libraries/EventEmitter/__mocks__/NativeEventEmitter.js"
|
|
]
|
|
}
|
|
}
|