-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "use-input-mask",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Munir Ahmed Elsangedy",
"email": "elsangedy@gmail.com",
"url": "https://munir.dev"
},
"homepage": "https://use-input-mask.now.sh",
"repository": {
"type": "git",
"url": "https://github.com/elsangedy/use-input-mask.git"
},
"bugs": {
"url": "https://github.com/elsangedy/use-input-mask/issues"
},
"main": "dist/use-input-mask.cjs.js",
"module": "dist/use-input-mask.esm.js",
"files": [
"dist"
],
"scripts": {
"now-build": "yarn build:docs",
"dev": "docz dev",
"build:docs": "docz build",
"build": "kcd-scripts build --bundle",
"add-contributor": "all-contributors add"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"text-mask-core": "^5.1.2"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"all-contributors-cli": "^6.8.1",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"kcd-scripts": "^1.4.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"text-mask-addons": "^3.8.0"
}
}