Files
react-native-background-dow…/package.json
Kesha Antonov d19c4d50eb bump v
2024-01-25 16:48:01 +03:00

93 lines
2.6 KiB
JSON

{
"name": "@kesha-antonov/react-native-background-downloader",
"version": "3.0.1",
"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": "git+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, Kesha Antonov",
"email": "innokenty.longway@gmail.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.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.23.7",
"@react-native/babel-preset": "^0.74.0",
"@react-native/eslint-config": "^0.74.0",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^5.0.0",
"immer": "^10.0.3",
"jest": "^29.7.0",
"lint-staged": ">=15",
"metro-react-native-babel-preset": "^0.77.0",
"react": "18.2.0",
"react-native": "0.73.1",
"react-native-fs": "^2.20.0",
"react-native-vector-icons": "^10.0.3",
"react-test-renderer": "18.2.0",
"typescript": "5.3.3"
},
"peerDependencies": {
"react-native": ">=0.57.0"
}
}