forked from s3rious/react-telephone-input
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.74 KB
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
{
"name": "react-telephone-input",
"version": "4.0.1",
"description": "React component for entering and validating international telephone numbers",
"main": "lib/ReactTelephoneInput.js",
"scripts": {
"lint": "eslint src",
"build": "npm run clean && NODE_ENV=production babel src --out-dir lib",
"clean": "rimraf lib/*",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/mukeshsoni/react-telephone-input"
},
"keywords": [
"react-component",
"react-telephone-input",
"international-telephone-input",
"react"
],
"author": "Mukesh Soni",
"license": "MIT",
"bugs": {
"url": "https://github.com/mukeshsoni/react-telephone-input/issues"
},
"homepage": "https://github.com/mukeshsoni/react-telephone-input",
"devDependencies": {
"babel-eslint": "^3.1.17",
"babel-jest": "18.0.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"chai": "^3.0.0",
"dirty-chai": "^1.2.2",
"enzyme": "^2.7.1",
"eslint": "0.23.0",
"gulp": "^3.9.0",
"jest": "18.1.0",
"react": "^15.3.2",
"react-addons-test-utils": ">=0.14.0 || ^15.0.0",
"react-component-gulp-tasks": "^0.7.7",
"react-dom": "^15.3.2",
"react-test-renderer": "15.4.2",
"rimraf": "2.5.4"
},
"dependencies": {
"babel-cli": "^6.24.1",
"classnames": "^2.1.2",
"country-telephone-data": "s3rious/country-telephone-data",
"lodash": "^4.17.4",
"react-onclickoutside": "^5.11.1"
},
"peerDependencies": {
"react": ">=0.14.0 || ^15.0.0",
"react-dom": "^0.14.7 || ^15.0.0"
},
"browserify-shim": {
"classnames": "global:classNames",
"react": "global:React",
"lodash": "global:lodash"
}
}