forked from mukeshsoni/react-telephone-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.35 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
{
"name": "react-telephone-input",
"version": "4.73.4",
"description": "React component for entering and validating international telephone numbers",
"main": "lib/ReactTelephoneInput.js",
"modules": "es/ReactTelephoneInput.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "npx nwb build-react-component --copy-files",
"clean": "npx nwb clean-module && npx clean-demo",
"start": "nwb serve-react-demo",
"lint": "eslint src",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"deploy": "gh-pages -d demo/dist"
},
"jest": {
"transform": {
"^.+\\.js$": "./jest.transform.js"
},
"moduleFileExtensions": [
"js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"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": "^10.0.3",
"babel-jest": "^22.4.3",
"babel-plugin-remove-data-test-id-attribute": "^1.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-latest": "6.24.1",
"babel-preset-react": "6.24.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^1.1.0",
"jest": "^22.4.3",
"nwb": "^0.23.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"regenerator-runtime": "0.13.3"
},
"dependencies": {
"classnames": "^2.1.2",
"country-telephone-data": "0.4.2",
"cramda": "^0.4.4",
"debounce": "^1.1.0",
"lodash.memoize": "^4.1.2",
"prop-types": "^15.5.10",
"react-click-outside": "^3.0.1",
"react-tiny-virtual-list": "^2.1.4"
},
"peerDependencies": {
"react": ">=0.14.0 || ^15.0.0 || ^16.0.0"
},
"browserify-shim": {
"classnames": "global:classNames",
"react": "global:React"
}
}