-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "@mutagen-d/react-native-file-cache",
"version": "0.2.0",
"description": "Caching files to disk in react-native apps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"build": "rimraf dist && tsc -p tsconfig.prod.json",
"prepare": "npm run build"
},
"keywords": [
"react-native",
"file",
"download",
"request",
"image",
"cache"
],
"author": "mutagen-d",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^27.0.6",
"@types/jest": "^26.0.24",
"@types/react-native": "^0.64.12",
"@types/rn-fetch-blob": "^1.2.2",
"jest": "^27.0.6",
"react": "^17.0.2",
"react-native": "^0.64.2",
"rimraf": "^3.0.2",
"rn-fetch-blob": "0.12.0",
"tree-file-system": "^0.1.0",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5",
"xhr2-cookies": "^1.1.0"
},
"dependencies": {
"@mutagen-d/path": "^0.2.0",
"crypto-js": "^4.1.1",
"js-logger": "^1.6.1",
"p-queue": "6.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mutagen-d/react-native-file-cache.git"
},
"bugs": {
"url": "https://github.com/mutagen-d/react-native-file-cache/issues"
},
"homepage": "https://github.com/mutagen-d/react-native-file-cache#readme"
}