forked from bl00mber/react-phone-input-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.78 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-phone-input-2",
"version": "2.15.1",
"description": "A react component to format phone numbers",
"main": "lib/lib.js",
"typings": "index.d.ts",
"scripts": {
"test": "jest",
"start": "TARGET=dev_js NODE_ENV=development webpack-dev-server --progress",
"start:css": "TARGET=dev_css NODE_ENV=development webpack-dev-server --progress",
"build": "export SET NODE_OPTIONS=--openssl-legacy-provider && npm run build:js && npm run build:css",
"build:js": "TARGET=build_js NODE_ENV=production webpack -p --progress",
"build:css": "TARGET=build_css NODE_ENV=production webpack -p --progress && rm ./main.js",
"prepublishOnly": "npm run build",
"analyze": "TARGET=analyze NODE_ENV=production webpack -p --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bl00mber/react-phone-input-2.git"
},
"keywords": [
"react",
"phone",
"format",
"number",
"input",
"telephone",
"javascript",
"international",
"tel",
"localized",
"material",
"bootstrap",
"i18n"
],
"files": [
"lang",
"lib",
"LICENSE",
"README.md",
"index.d.ts"
],
"author": "Nick Reiley <bloomber111@gmail.com> (https://github.com/bl00mber)",
"contributors": [
"Raza Gill <raza.gill@outlook.com> (https://github.com/razagill)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bl00mber/react-phone-input-2/issues"
},
"homepage": "https://github.com/bl00mber/react-phone-input-2",
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2)$": "<rootDir>/test/__mocks__/fileMock.js",
"\\.(css|less|stylus|scss)$": "<rootDir>/test/__mocks__/styleMock.js"
},
"globals": {
"__DEV__": false
}
},
"devDependencies": {
"@babel/core": "^7.3.3",
"babel-loader": "^8.0.5",
"babel-preset-react-app": "^7.0.1",
"css-loader": "^2.1.0",
"extract-loader": "^3.1.0",
"file-loader": "^5.0.2",
"jest": "^24.7.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.6.5",
"react-testing-library": "^6.0.4",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.5",
"webpack-bundle-analyzer": "^3.0.4",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"peerDependencies": {
"react": "^16.12.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0",
"react-dom": "^16.12.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash.debounce": "^4.0.8",
"lodash.memoize": "^4.1.2",
"lodash.reduce": "^4.6.0",
"lodash.startswith": "^4.2.1",
"prop-types": "^15.7.2"
}
}