@callstack/async-storage
Version:
Cross platform storage for React Native and Web, built on top of React Native
73 lines (72 loc) • 1.81 kB
JSON
{
"name": "@callstack/async-storage",
"version": "2.0.3",
"description": "Cross platform storage for React Native and Web, built on top of React Native",
"main": "lib",
"files": [
"lib/index.android.js",
"lib/index.ios.js",
"lib/index.js",
"lib/index.mobile.js",
"lib/types.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/callstack-io/react-native-cross-platform-storage.git"
},
"bugs": {
"url": "https://github.com/callstack-io/react-native-cross-platform-storage/issues"
},
"homepage": "https://github.com/callstack-io/react-native-cross-platform-storage#readme",
"author": "Mike Grabowski <grabbou@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint src",
"flow": "flow src",
"build": "cpx \"src/**/!(*.test.js)\" lib && babel src/index.js -o lib/index.js",
"jest": "jest",
"test": "flow src && eslint src && jest"
},
"dependencies": {
"lodash.merge": "^4.6.0"
},
"peerDependencies": {
"@react-native-community/async-storage": "^1.5.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.0",
"babel-jest": "21.0.2",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.0",
"babel-preset-flow": "6.23.0",
"cpx": "1.5.0",
"eslint": "4.7.0",
"eslint-config-callstack-io": "0.4.1",
"flow-bin": "0.54.1",
"jest": "21.1.0"
},
"jest": {
"setupFiles": [
"./jest/setup.js"
]
},
"eslintConfig": {
"extends": "callstack-io",
"rules": {
"import/no-unresolved": 0
},
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".android.js",
".ios.js"
]
}
}
}
}
}