UNPKG

@nghinv/react-native-app-tour

Version:
124 lines 3.09 kB
{ "name": "@nghinv/react-native-app-tour", "version": "0.0.9", "description": "React Native app tour Library", "main": "lib/commonjs/index", "module": "lib/module/index", "types": "lib/typescript/index.d.ts", "react-native": "src/index", "source": "src/index", "files": [ "src", "lib", "!lib/typescript/example", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__" ], "scripts": { "test": "jest", "typescript": "tsc --noEmit", "lint": "eslint \"**/*.{js,ts,tsx}\"", "prepare": "bob build", "release": "release-it" }, "keywords": [ "react native", "ios", "android", "app tour", "user guide", "nghinv" ], "repository": "https://github.com/nghinv-software/react-native-app-tour", "author": "NghiNV <nguyennghidt6@gmail.com> (https://github.com/nghi-nv)", "license": "MIT", "bugs": { "url": "https://github.com/nghinv-software/react-native-app-tour/issues" }, "homepage": "https://github.com/nghinv-software/react-native-app-tour#readme", "publishConfig": { "access": "public" }, "devDependencies": { "@commitlint/config-conventional": "^11.0.0", "@react-native-community/eslint-config": "^2.0.0", "@nghinv/eslint-config": "^2.3.0", "@release-it/conventional-changelog": "^2.0.0", "@types/jest": "^26.0.0", "@types/react": "^16.9.19", "@types/react-native": "0.62.13", "commitlint": "^11.0.0", "eslint": "^7.2.0", "eslint-config-prettier": "^7.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.64.2", "react-native-gesture-handler": "^1.10.3", "react-native-reanimated": "^2.2.0", "react-native-animateable-text": "^0.6.2", "react-native-svg": "12.1.1", "react-native-builder-bob": "^0.18.0", "release-it": "^14.10.0", "typescript": "^4.0.8" }, "peerDependencies": { "react": "*", "react-native": "*", "react-native-svg": "*", "react-native-gesture-handler": "*", "react-native-reanimated": ">=2.0.0-rc.0", "react-native-animateable-text": "^0.6.2" }, "dependencies": { "react-fast-compare": "*", "react-native-event-listeners": "*" }, "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": { "github": { "release": true } }, "eslintIgnore": [ "node_modules/", "lib/", "src/index.tsx", "example/App.tsx" ], "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ "commonjs", "module", [ "typescript", { "project": "tsconfig.build.json" } ] ] } }