UNPKG

@freakycoder/react-native-empty-state

Version:

Empty State library which is fully customizable and simple for any state view use-cases

57 lines (56 loc) 1.63 kB
{ "name": "@freakycoder/react-native-empty-state", "version": "0.1.3", "description": "Empty State library which is fully customizable and simple for any state view use-cases", "main": "./build/dist/EmptyState.js", "repository": "git@github.com:WrathChaos/react-native-empty-state.git", "author": "FreakyCoder <kurayogun@gmail.com>", "license": "MIT", "homepage": "https://www.freakycoder.com", "bugs": "https://github.com/WrathChaos/react-native-empty-state/issues", "keywords": [ "FreakyCoder", "freakycoder", "kuray", "Kuray", "react", "react-native", "javascript", "ui-lib", "rn" ], "scripts": { "build": "cd lib && tsc && cp ../package.json ../build/dist/ && Echo Build completed!", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "peerDependencies": { "react": ">= 16.x.x", "react-native": ">=0.63.x" }, "devDependencies": { "@types/react": "^16.9.53", "@types/react-native": "^0.63.25", "react-native-typescript-transformer": "^1.2.13", "typescript": "^4.0.3", "@react-native-community/eslint-config": "^2.0.0", "eslint": "^7.11.0", "eslint-config-airbnb": "^18.2.0", "husky": "^4.3.0", "lint-staged": "^10.4.2", "prettier": "^2.1.2" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "./src/*.{js,jsx,ts,tsx}": [ "npx prettier --write", "eslint src/*.js --fix-dry-run" ] } }