@freakycoder/react-native-text-input
Version:
Modern text input with fully customization options for React Native
60 lines (59 loc) • 1.69 kB
JSON
{
"name": "@freakycoder/react-native-text-input",
"version": "0.1.9",
"description": "Modern text input with fully customization options for React Native",
"main": "./build/dist/RNTextInput.js",
"repository": "git@github.com:WrathChaos/react-native-text-input.git",
"author": "FreakyCoder <kurayogun@gmail.com>",
"license": "MIT",
"homepage": "https://www.freakycoder.com",
"bugs": "https://github.com/WrathChaos/react-native-text-input/issues",
"keywords": [
"react-native-text-input",
"react-native-text",
"react-native-input",
"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": {
"@react-native-community/eslint-config": "^2.0.0",
"@types/react": "^16.9.53",
"@types/react-native": "^0.63.25",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"react-native-typescript-transformer": "^1.2.13",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"eslint src/*.js --fix-dry-run"
]
}
}