forked from mitevdev/react-native-clcacher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 999 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-cacher",
"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-clcasher.git"
},
"keywords": [
"Cacher"
],
"files": [
"index.js",
"MemoryCache.js"
],
"author": "mitevdev",
"license": "MIT",
"dependencies": {
"@react-native-community/async-storage": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"jest-react-native": "^18.0.0",
"metro-react-native-babel-preset": "^0.56.0",
"react": "^16.9.0",
"react-native": "^0.60.5",
"react-test-renderer": "^16.9.0"
}
}