forked from sunnylqm/react-native-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 972 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
{
"name": "react-native-storage",
"version": "0.1.4",
"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,
"scriptPreprocessor": "node_modules/babel-jest",
"setupEnvScriptFile": "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": "^5.3.0",
"jest-cli": "^0.8.0"
}
}