UNPKG

sync-storage

Version:

Synchronous storage for React Native.

96 lines (95 loc) 3.14 kB
{ "name": "sync-storage", "version": "0.4.2", "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 } }