UNPKG

react-native-step-indicator

Version:

A simple react-native implementation of a step indicator widget compatible with ViewPager and Flatlist

141 lines (140 loc) 3.4 kB
{ "name": "react-native-step-indicator", "version": "1.0.3", "description": "A simple react-native implementation of a step indicator widget compatible with ViewPager and Flatlist", "main": "lib/commonjs/index", "module": "lib/module/index", "types": "lib/typescript/src/index.d.ts", "react-native": "src/index", "source": "src/index", "files": [ "src", "lib", "android", "ios", "cpp", "react-native-step-indicator.podspec", "!lib/typescript/example", "!**/__tests__" ], "scripts": { "test": "jest", "typescript": "tsc --noEmit", "lint": "eslint --ext .js,.ts,.tsx .", "prepare": "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", "react-component", "step-indicator", "viewpager", "scrollview", "listview" ], "repository": "https://github.com/24ark/react-native-step-indicator", "author": "Arkit Vora <arkitvora123@gmail.com> (https://github.com/24ark)", "license": "MIT", "bugs": { "url": "https://github.com/24ark/react-native-step-indicator/issues" }, "homepage": "https://github.com/24ark/react-native-step-indicator#readme", "devDependencies": { "@commitlint/config-conventional": "^8.3.4", "@react-native-community/bob": "^0.14.5", "@react-native-community/eslint-config": "^1.1.0", "@release-it/conventional-changelog": "^1.1.4", "@types/jest": "^25.2.1", "@types/react": "^16.9.19", "@types/react-native": "0.62.7", "commitlint": "^8.3.5", "eslint": "^6.8.0", "eslint-config-prettier": "^6.11.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.9.0", "react-native": "~0.61.5", "release-it": "^13.5.8", "typescript": "^3.8.3" }, "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" } }, "eslintConfig": { "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 }, "release-it": { "git": { "commitMessage": "chore: release ${version}", "tagName": "v${version}" }, "npm": { "publish": true }, "github": { "release": true }, "plugins": { "@release-it/conventional-changelog": { "preset": "angular" } } }, "@react-native-community/bob": { "source": "src", "output": "lib", "targets": [ "commonjs", "module", "typescript" ] } }