-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
97 lines (97 loc) · 2.84 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@kesha-antonov/react-native-background-downloader",
"version": "3.2.6",
"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": "Kesha Antonov, Eko labs",
"email": "[email protected]"
},
"contributors": [
{
"name": "Kesha Antonov, 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"
],
"roots": [
"./__tests__"
]
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@react-native/babel-preset": "^0.76.5",
"@react-native/eslint-config": "^0.76.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"immer": "^10.1.1",
"jest": "^29.7.0",
"lint-staged": ">=15",
"metro-react-native-babel-preset": "^0.77.0",
"react": "18.2.0",
"react-native": "0.73.6",
"react-native-fs": "^2.20.0",
"react-native-vector-icons": "^10.2.0",
"react-test-renderer": "19.0.0",
"typescript": "5.7.3"
},
"peerDependencies": {
"react-native": ">=0.57.0"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}