UNPKG

react-intl-tel-input-wrapper

Version:

Telephone input component. rewrite Patw's react-intl-tel-input package for React 18

124 lines (123 loc) 3.81 kB
{ "name": "react-intl-tel-input-wrapper", "version": "1.0.3", "description": "Telephone input component. rewrite Patw's react-intl-tel-input package for React 18", "author": "patw", "workspaces": [ "website" ], "contributors": [ { "name": "Marc Cataford", "email": "mcat@riseup.net", "url": "https://mcataford.github.io" }, { "name": "Felipe Mendonca", "email": "felipemom2001@gmail.com" } ], "keywords": [ "react", "react-component", "tel", "telephone", "intl-tel-input", "international-telephone-input", "phonenumber" ], "repository": { "type": "git", "url": "https://github.com/FelipeAnony/react-intl-tel-input-wrapper" }, "bugs": { "url": "https://github.com/FelipeAnony/react-intl-tel-input-wrapper" }, "main": "dist/index.js", "types": "dist/index.d.ts", "peerDependencies": { "react": ">=15.4.0", "react-dom": ">=15.4.0" }, "files": [ "dist/**/*" ], "dependencies": { "classnames": "^2.2.5", "libphonenumber-js-utils": "^8.10.5", "prop-types": "^15.6.1", "react-style-proptype": "^3.0.0", "underscore.deferred": "^0.4.0" }, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.2.0", "@babel/plugin-proposal-class-properties": "^7.2.1", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/polyfill": "^7.0.0", "@babel/preset-env": "^7.2.0", "@babel/preset-react": "^7.22.15", "@commitlint/cli": "^8.3.5", "@commitlint/config-conventional": "^8.3.4", "@types/jquery": "^3.5.6", "@types/node": "^14.0.13", "@types/react": "^16.9.56", "@types/react-dom": "^16.9.9", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^23.6.0", "babel-plugin-dynamic-import-node": "^2.2.0", "babel-plugin-react-docgen": "^2.0.2", "babel-plugin-transform-react-remove-prop-types": "^0.4.21", "coveralls": "^2.11.9", "enzyme": "^3.3.0", "enzyme-adapter-react-16": "^1.5.0", "husky": "^4.2.3", "identity-obj-proxy": "^3.0.0", "jasmine-reporters": "^2.2.0", "jest": "^23.6.0", "jsdom": "^9.2.1", "lint-staged": "^11.1.1", "packwatch": "^1.0.0", "prettier": "^1.14.2", "react": "^16.4.1", "react-dom": "^16.4.1", "rimraf": "2.5.4", "sass": "^1.37.4", "semantic-release": "^17.0.4", "sinon": "^1.17.4", "typescript": "^4.4.3" }, "scripts": { "prebuild": "yarn run clean", "build": "yarn compile:js && yarn compile:dts && yarn compile:css && yarn compile:png", "compile:js": "BABEL_ENV=production babel src -d dist", "compile:dts": "rsync -avh --include='*/' --include='*.d.ts' --exclude='*' src/ dist --prune-empty-dirs", "compile:css": "sass ./src/intlTelInput.scss ./dist/main.css", "compile:png": "cp -r -v ./src/*.png ./dist", "clean": "rimraf dist", "website:start": "yarn workspace website run start", "website:dryrun": "yarn workspace website run deploy:dryrun", "website:deploy": "yarn workspace website run deploy", "lint": "eslint src website/.storybook --ext .js,.d.ts", "coverage": "yarn test --coverage", "coverage-upload": "NODE_ENV=development cat coverage/lcov.info | yarn coveralls", "test": "jest src", "test:watch": "jest src --watchAll --coverage", "test:ts": "tsc --project ./tsconfig.test.json", "test:ts-watch": "tsc --watch --project ./tsconfig.test.json", "footprint": "yarn build && yarn packwatch", "lint:commits": "yarn commitlint --from HEAD --to HEAD --verbose" }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "prettier": { "semi": false, "printWidth": 80, "singleQuote": true, "trailingComma": "all" }, "license": "MIT" }