forked from thegamenicorus/react-native-phone-input
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
73 lines (73 loc) · 2.16 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
{
"name": "react-native-phone-input",
"version": "1.3.7",
"description": "Phone input box for React Native",
"main": "dist/index.js",
"scripts": {
"build": "./bin/build.sh",
"lint-fix": "./node_modules/.bin/eslint --ext .js,.jsx,.ts,.tsx --fix ./",
"lint": "./node_modules/.bin/eslint --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.32",
"lodash": "^4.17.21",
"prop-types": "^15.8.1"
},
"peerDependencies": {
"@react-native-picker/picker": ">= 2.0",
"react-native": ">=0.69.9"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.3.4",
"@types/mocha": "^5.2.7",
"@types/react-native": "^0.63.69",
"@types/react-native-phone-input": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"chai": "^4.3.7",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^4.3.8",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.14.2",
"typescript": "^4.9.5"
},
"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": "dist/typings/index.d.ts",
"files": [
"dist/"
]
}