-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
77 lines (77 loc) · 2.01 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
{
"name": "vue-currency-input",
"description": "Easy input of currency formatted numbers for Vue.js.",
"version": "2.0.0-rc.3",
"license": "MIT",
"unpkg": "dist/vue-currency-input.umd.js",
"jsdelivr": "dist/vue-currency-input.umd.js",
"module": "dist/vue-currency-input.esm.js",
"main": "dist/vue-currency-input.umd.js",
"types": "src/index.d.ts",
"files": [
"dist/*.js",
"src/index.d.ts"
],
"sideeffects": false,
"author": "Matthias Stiller",
"repository": {
"type": "git",
"url": "https://github.com/dm4t2/vue-currency-input.git"
},
"homepage": "https://dm4t2.github.io/vue-currency-input",
"keywords": [
"vue",
"composition api",
"composable",
"text mask",
"input mask",
"currency input",
"money input",
"number format",
"i18n",
"ISO 4217",
"ECMA-402"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "rollup -c",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.6 || ^3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@mdi/font": "^4.7.95",
"@vue/cli-plugin-babel": "~4.5.11",
"@vue/cli-plugin-eslint": "~4.5.11",
"@vue/cli-plugin-unit-jest": "~4.5.11",
"@vue/cli-service": "~4.5.11",
"@vue/composition-api": "^1.0.0-rc.1",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.5",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"rollup": "^2.15.0",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-filesize": "^9.0.0",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12",
"vuetify": "^2.4.4"
},
"dependencies": {
"vue-demi": "^0.6.0"
}
}