forked from leethree/redux-persist-fs-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 776 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
{
"name": "redux-persist-fs-storage",
"version": "1.3.0",
"description": "Redux-Persist storage engine for React Native file system",
"repository": "https://github.com/leethree/redux-persist-fs-storage.git",
"author": "LeeThree <[email protected]>",
"license": "MIT",
"keywords": [
"redux",
"redux-persist",
"storage",
"AsyncStorage"
],
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"prettier": "prettier --write index.js"
},
"dependencies": {
"react-native-fs": "^2.14.1"
},
"devDependencies": {
"flow-bin": "0.105.1",
"prettier": "1.18.2"
},
"peerDependencies": {
"react-native": ">=0.57.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}