react-native-cloud-store
Version:
A react-native module for cloud operation
119 lines (118 loc) • 2.68 kB
JSON
{
"name": "react-native-cloud-store",
"version": "0.12.0",
"description": "A react-native module for cloud operation",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-cloud-store.podspec",
"plugins",
"app.plugin.js",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"prepare": "bob build"
},
"keywords": [
"react-native",
"ios",
"android",
"icloud"
],
"repository": "https://github.com/XHMM/react-native-cloud-store",
"author": "xhmm <super.xhmm@gmail.com> (https://github.com/XHMM)",
"license": "MIT",
"bugs": {
"url": "https://github.com/XHMM/react-native-cloud-store/issues"
},
"homepage": "https://github.com/XHMM/react-native-cloud-store#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.19",
"@types/react-native": "0.62.13",
"eslint": "^7.2.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"react": "18.0.0",
"react-native": "0.69.6",
"react-native-builder-bob": "^0.18.2",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}