forked from xnimorz/svelte-input-mask
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1016 Bytes
/
package.json
File metadata and controls
52 lines (52 loc) · 1016 Bytes
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
{
"name": "svelte-input-mask",
"version": "0.0.3",
"description": "Input masking component for Svelte",
"main": "./MaskInput.svelte",
"scripts": {
"size": "size-limit"
},
"files": [
"MaskInput.svelte",
"NumberInput.svelte"
],
"keywords": [
"svelte",
"input",
"mask",
"svelte-component",
"svelte-mask-input",
"svelte-text-mask",
"svelte-input",
"svelte-input-mask",
"credit-card",
"date-input",
"number-input",
"date-format",
"custom-mask",
"input-formatting"
],
"size-limit": [
{
"limit": "1Kb",
"path": "./MaskInput.svelte"
},
{
"limit": "1Kb",
"path": "./NumberInput.svelte"
}
],
"author": "Nik Mostovoy (nik.mostovoy@gmail.com)",
"license": "MIT",
"peerDependencies": {
"svelte": "3.x"
},
"dependencies": {
"input-core": "2.0.1"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^2.1.6",
"prettier": "^1.18.2",
"size-limit": "^2.1.6"
}
}