UNPKG

react-native-gigya-sdk

Version:
179 lines (178 loc) 4.44 kB
{ "name": "react-native-gigya-sdk", "version": "3.0.2", "description": "SAP CDC/Gigya SDK for your React Native applications", "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-gigya-sdk.podspec", "!lib/typescript/example", "!android/build", "!android/.idea", "!android/.gradle", "!android/gradle", "!android/.project", "!android/.settings", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!ios/build", "!ios/GigyaSdk.xcodeproj/xcuserdata", "!ios/GigyaSdk.xcodeproj/project.xcworkspace/xcuserdata", "!ios/GigyaSdk.xcodeproj/project.xcworkspace/xcshareddata/", "!ios/GigyaSdk.xcodeproj/project.xcworkspace/contents.xcworkspacedata", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__" ], "scripts": { "test": "jest", "typescript": "tsc --noEmit", "lint": "eslint \"**/*.{js,ts,tsx}\" --fix", "pre-commit": "yarn lint && yarn typescript", "prepare": "npx -p react-native-builder-bob bob build", "release": "release-it", "example": "yarn --cwd example", "pods": "cd example && pod-install --quiet", "bootstrap": "yarn example && yarn && yarn pods" }, "keywords": [ "react-native", "ios", "android", "sap cdc", "gigya" ], "repository": "https://github.com/colorfy-software/react-native-gigya-sdk", "author": "Charles Mangwa <charlesmangwa@gmail.com> (https://github.com/CharlesMangwa), Erik Waterloo <erik@colorfy.me> (https://github.com/3rikW)", "license": "MIT", "bugs": { "url": "https://github.com/colorfy-software/react-native-gigya-sdk/issues" }, "homepage": "https://github.com/colorfy-software/react-native-gigya-sdk#readme", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@commitlint/config-conventional": "^12.0.0", "@react-native-community/eslint-config": "^2.0.0", "@release-it/conventional-changelog": "^8.0.1", "@types/base-64": "^0.1.3", "@types/jest": "^26.0.0", "@types/react": "^16.9.19", "@types/react-native": "0.62.13", "base-64": "1.0.0", "commitlint": "^11.0.0", "eslint": "^7.2.0", "eslint-config-prettier": "^8.0.0", "eslint-plugin-prettier": "^3.1.3", "husky": "^4.2.5", "jest": "^26.0.1", "pod-install": "^0.1.0", "prettier": "^2.0.5", "react": "16.13.1", "react-native": "0.63.4", "react-native-builder-bob": "^0.17.1", "release-it": "^17.6.0", "typescript": "^4.2.2" }, "dependencies": { "base-64": "*" }, "peerDependencies": { "react": "*", "react-native": "*" }, "jest": { "preset": "react-native", "modulePathIgnorePatterns": [ "<rootDir>/example/node_modules", "<rootDir>/lib/" ] }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-commit": "yarn lint && yarn typescript" } }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "release-it": { "git": { "commitMessage": "chore: release ${version}", "tagName": "v${version}" }, "npm": { "publish": true }, "github": { "release": true }, "plugins": { "@release-it/conventional-changelog": { "preset": { "name": "angular" } } } }, "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", "trailingComma": "es5", "bracketSpacing": true, "singleQuote": true, "printWidth": 120, "useTabs": false, "tabWidth": 2, "semi": false }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ "commonjs", "module", [ "typescript", { "project": "tsconfig.build.json" } ] ] } }