forked from cheeaun/react-native-cache-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 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
{
"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": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js",
"json"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/fbjs"
],
"globals": {
"__DEV__": true
},
"verbose": true
},
"devDependencies": {
"babel-jest": "~10.0.1",
"jest-cli": "~0.10.0",
"react": "~0.14.8",
"react-native": "~0.22.2"
},
"babel": {
"presets": [
"react-native"
]
}
}