-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.34 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.34 KB
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
{
"name": "react-native-cache-store",
"version": "1.0.2",
"description": "A localStorage-like wrapper around React Native's AsyncStorage with cache expiration.",
"keywords": [
"react-native",
"react",
"cache",
"lscache",
"asyncstorage",
"storage"
],
"author": "Lim Chee Aun",
"homepage": "https://github.com/cheeaun/react-native-cache-store",
"bugs": {
"url": "https://github.com/cheeaun/react-native-cache-store/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/cheeaun/react-native-cache-store.git"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest",
"clear-jest-cache": "rm -rf ./node_modules/jest-cli/.haste_cache"
},
"jest": {
"collectCoverage": true,
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"moduleFileExtensions": [
"js",
"json"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/fbjs"
],
"globals": {
"__DEV__": true
},
"verbose": true
},
"devDependencies": {
"babel-jest": "~10.0.1",
"jest": "^23.6.0",
"react": "~0.14.8",
"react-native": "~0.22.2"
},
"babel": {
"presets": [
"react-native"
]
},
"dependencies": {
"@react-native-community/async-storage": "^1.5.1"
}
}