-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 1006 Bytes
/
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
{
"name": "react-native-clcacher",
"version": "1.0.0",
"description": "Extended AsyncStorage with expiration check",
"scripts": {
"test": "./node_modules/.bin/jest"
},
"jest": {
"preset": "react-native",
"globals": {
"NODE_ENV": "test"
},
"testPathIgnorePatterns": [
"/node_modules/"
],
"verbose": true
},
"repository": {
"type": "git",
"url": "https://github.com/mitevdev/react-native-clcacher.git"
},
"keywords": [
"Cacher"
],
"files": [
"index.js",
"MemoryCache.js"
],
"author": "mitevdev",
"license": "MIT",
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.4"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"jest-react-native": "^18.0.0",
"metro-react-native-babel-preset": "^0.66.2",
"react": "^17.0.2",
"react-native": "^0.65.1",
"react-test-renderer": "^17.0.2"
}
}