UNPKG

react-native-auto-height-image

Version:
70 lines (69 loc) 1.54 kB
{ "name": "react-native-auto-height-image", "version": "3.2.4", "description": "react-native auto height image", "main": "./index.js", "typings": "./index.d.ts", "scripts": { "release": "standard-version && git push --follow-tags && npm publish", "release:beta": "standard-version --prerelease beta && git push --follow-tags && npm publish" }, "repository": { "type": "git", "url": "git@github.com:vivaxy/react-native-auto-height-image.git" }, "keywords": [ "react-native", "image", "auto-height", "react", "images" ], "author": "vivaxy", "license": "MIT", "dependencies": { "prop-types": "^15.7.2" }, "devDependencies": { "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "husky": "^4.0.0", "lint-staged": "^10.0.0", "prettier": "^2.0.0", "react": "^17.0.0", "react-native": "^0.63.0", "standard-version": "^9.0.0" }, "peerDependencies": { "react": "^17.0.0", "react-native": "^0.63.0" }, "lint-staged": { "**/**.{js,json,md,ts}": [ "prettier --write", "git add" ] }, "prettier": { "singleQuote": true, "trailingComma": "none", "arrowParens": "always" }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "commitlint": { "extends": [ "@commitlint/config-conventional" ], "rules": { "header-max-length": [ 0, "never" ] } } }