forked from warp/react-telephone-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
{
"name": "react-telephone-input",
"version": "3.2.4",
"description": "React component for entering and validating international telephone numbers",
"main": "lib/ReactTelephoneInput.js",
"scripts": {
"lint": "eslint src",
"build": "gulp clean && NODE_ENV=production gulp build",
"examples": "gulp dev:server",
"publish:site": "gulp publish:examples",
"release": "gulp release",
"start": "gulp dev",
"test": "mochify --watch",
"watch": "gulp watch:lib"
},
"repository": {
"type": "git",
"url": "https://github.com/mukeshsoni/react-telephone-input"
},
"keywords": [
"react-component",
"react-telephone-input",
"international-telephone-input",
"react"
],
"browserify": {
"transform": [
"babelify",
"lessify"
]
},
"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",
"babelify": "^6.3.0",
"chai": "^3.0.0",
"eslint": "^0.23.0",
"gulp": "^3.9.0",
"lessify": "^1.0.1",
"mochify": "^2.9.0",
"react-component-gulp-tasks": "^0.7.6"
},
"dependencies": {
"classnames": "^2.1.2",
"lodash": "^3.10.1",
"react-onclickoutside": "^4.5.0"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": "^0.14.7"
},
"browserify-shim": {
"classnames": "global:classNames",
"react": "global:React",
"lodash": "global:lodash"
}
}