forked from raphaelpor/sync-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.07 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "sync-storage",
"version": "0.4.1",
"description": "Synchronous storage for React Native.",
"main": "src/index.js",
"scripts": {
"check-code": "npm run lint && npm run flow",
"coverage": "jest --coverage",
"flow": "flow",
"flow-stop": "flow stop",
"lint": "eslint src/",
"prettier": "prettier --write src/index.js",
"sync-devapp": "cp -R ./src ./DevApp/sync-storage",
"test": "jest --config ./jest.config.js --no-cache",
"test-codecov": "npm test && codecov"
},
"keywords": [
"AsyncStorage",
"React",
"Native",
"SyncStorage",
"Storage"
],
"author": "Raphael Porto",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/raphaelpor/SyncStorage.git"
},
"bugs": {
"url": "https://github.com/raphaelpor/SyncStorage/issues"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.61"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-do-expressions": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/plugin-proposal-export-namespace-from": "^7.7.4",
"@babel/plugin-proposal-function-bind": "^7.7.4",
"@babel/plugin-proposal-function-sent": "^7.7.4",
"@babel/plugin-proposal-json-strings": "^7.7.4",
"@babel/plugin-proposal-logical-assignment-operators": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-numeric-separator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-proposal-pipeline-operator": "^7.7.4",
"@babel/plugin-proposal-throw-expressions": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-syntax-import-meta": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-typescript": "^7.7.4",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.6",
"@babel/preset-flow": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.7.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-jest-hoist": "^24.9.0",
"codecov": "^3.6.1",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"flow-bin": "0.113.0",
"jest-cli": "^24.9.0",
"metro-react-native-babel-preset": "^0.57.0",
"prettier-eslint": "^9.0.1",
"react": "^16.6.3",
"react-native": "^0.61.5",
"react-test-renderer": "16.12.0",
"regenerator-runtime": "^0.13.3",
"typescript": "^3.7.3"
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.3"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 80
}
}