-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 935 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
39
{
"name": "redux-persist-expo-fs-storage",
"version": "2.1.0",
"description": "Redux-Persist storage engine for Expo file system",
"repository": "https://github.com/nohac/redux-persist-expo-fs-storage",
"author": "Jonas Rudlang <[email protected]>",
"license": "MIT",
"keywords": [
"redux",
"redux-persist",
"storage",
"AsyncStorage"
],
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prettier": "prettier --write index.js",
"build": "yarn run babel index.js -d lib/",
"prepublish": "yarn run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-flow": "^6.23.0",
"flow-bin": "0.135.0",
"prettier": "2.1.2"
},
"peerDependencies": {
"react": "^16.13.1",
"react-native": ">=0.63.3",
"expo-file-system": "^9.2.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"parser": "flow"
}
}