UNPKG

emma-react-native-sdk

Version:

React Native EMMA SDK libs and examples

64 lines (63 loc) 1.44 kB
{ "name": "emma-react-native-sdk", "version": "1.9.0", "homepage": "https://emma.io", "description": "React Native EMMA SDK libs and examples", "author": "EMMA / Ignacio Lago", "license": "Apache-2.0", "main": "dist/index.js", "typings": "dist/index.d.ts", "keywords": [ "react-native", "react", "native", "emma" ], "repository": { "type": "git", "url": "https://github.com/EMMADevelopment/emma-react-native-sdk.git" }, "scripts": { "example:android": "cd example; react-native run-android; cd ..", "example:ios": "cd example; react-native run-ios; cd ..", "example:start": "cd example; react-native start; cd ..", "build": "rimraf dist/; tsc --build tsconfig.json", "test": "jest", "lint": "eslint . --ext .js,.jsx,.ts,.tsx" }, "peerDependencies": { "react-native": ">=0.63.3" }, "devDependencies": { "@types/react-native": "^0.71.3", "eslint": "^7.32.0", "husky": "^5.2.0", "jest": "^25.1.0", "lint-staged": "^10.5.4", "react": "18.0.0", "react-native": "0.69.2", "rimraf": "^3.0.2", "typescript": "^4.2.3" }, "jest": { "preset": "react-native", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ] }, "lint-staged": { "src/**/*.ts": [ "npm run build" ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } } }