forked from sunnylqm/react-native-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1023 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
{
"name": "react-native-storage",
"version": "0.2.2",
"description": "A local storage wrapper for both react-native(AsyncStorage) and browser(localStorage). Support size controlling, auto expiring, remote data auto syncing and getting batch data in one query.",
"main": "storage.js",
"scripts": {
"test": "jest"
},
"jest": {
"verbose": true,
"bail": true,
"setupFiles": [
"./jestSupport/mockStorage.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sunnylqm/react-native-storage.git"
},
"keywords": [
"react-native",
"localStorage",
"AsyncStorage"
],
"author": "sunnylqm",
"license": "MIT",
"bugs": {
"url": "https://github.com/sunnylqm/react-native-storage/issues"
},
"homepage": "https://github.com/sunnylqm/react-native-storage#readme",
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"jest": "^19.0.2"
}
}