forked from sunnylqm/react-native-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "@devshack/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": "dist/storage.js",
"scripts": {
"test": "jest",
"build": "babel src --out-dir dist",
"prepublishOnly": "npm run build"
},
"jest": {
"verbose": true,
"bail": true,
"setupFiles": [
"./jestSupport/mockStorage.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/devshackio/react-native-storage.git"
},
"keywords": [
"react-native",
"localStorage",
"AsyncStorage"
],
"author": "devshackio",
"license": "MIT",
"bugs": {
"url": "https://github.com/devshackio/react-native-storage/issues"
},
"homepage": "https://github.com/devshackio/react-native-storage#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-jest": "^19.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"jest": "^19.0.2"
}
}