forked from rajputav/react-native-phone-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-native-phone-input",
"version": "1.0.9",
"description": "Phone input box for React Native",
"main": "dist/index.js",
"scripts": {
"build": "./bin/build.sh",
"lint-fix": "./node_modules/.bin/eslint --quiet --ext .js,.jsx,.ts,.tsx --fix ./",
"lint": "./node_modules/.bin/eslint --quiet --ext .js,.jsx,.ts,.tsx ./",
"test": "./node_modules/.bin/mocha -r ./node_modules/ts-node/register -r tsconfig-paths/register --config .mocharc.js ./tests/**/*.test.ts --exit",
"test-coverage": "./node_modules/.bin/nyc --config ./nyc.config.js npm run test",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/rili-live/react-native-phone-input"
},
"keywords": [
"react-native",
"phone",
"telephone",
"phone input",
"input",
"tel",
"input text",
"international",
"react-native-component",
"ios",
"android"
],
"dependencies": {
"google-libphonenumber": "^3.2.2",
"lodash": "^4.17.4",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react-native": ">= 0.25",
"@react-native-picker/picker": ">= 1.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@react-native-picker/picker": "^1.9.10",
"@types/chai": "^4.2.12",
"@types/mocha": "^5.2.7",
"@types/react-native": "^0.63.48",
"@types/react-native-phone-input": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.7",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3"
},
"author": "Zack Anselm (https://github.com/zizzle6717)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rili-live/react-native-phone-input/issues"
},
"homepage": "https://github.com/rili-live/react-native-phone-input",
"types": "./typings/index.d.ts",
"files": [
"dist/"
]
}