forked from leethree/redux-persist-fs-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 928 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
38
{
"name": "redux-persist-expo-fs-storage",
"version": "1.2.1",
"description": "Redux-Persist storage engine for Expo file system",
"repository": "https://github.com/leethree/redux-persist-fs-storage.git",
"author": "LeeThree <leethree@users.noreply.github.com>",
"license": "MIT",
"keywords": [
"redux",
"redux-persist",
"storage",
"AsyncStorage"
],
"main": "lib/index.js",
"scripts": {
"prettier": "prettier --write index.js",
"build": "yarn run babel index.js -- -d lib/",
"prepublish": "yarn run build"
},
"dependencies": {
"expo": "^25.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-flow": "^6.23.0",
"flow-bin": "0.63.1",
"prettier": "1.9.2"
},
"peerDependencies": {
"react": "^16.2.0",
"react-native": ">=0.50.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"parser": "flow"
}
}