-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
87 lines (87 loc) · 2.52 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
{
"name": "vue-currency-input",
"description": "Easy input of currency formatted numbers for Vue.js.",
"version": "3.1.0",
"license": "MIT",
"module": "./dist/index.mjs",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/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",
"input mask",
"currency input",
"money input",
"number format",
"ECMA-402"
],
"scripts": {
"dev": "vitepress dev docs",
"docs": "vitepress build docs",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint --no-fix --max-warnings 0 \"{**/*,*}.{js,ts}\"",
"prebuild": "rimraf dist && rimraf temp",
"build": "tsc --emitDeclarationOnly --declaration --outDir temp/types && rollup -c rollup.config.js"
},
"peerDependencies": {
"vue": "^2.7 || ^3.0.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.3",
"@testing-library/dom": "^8.20.1",
"@testing-library/user-event": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^0.34.6",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-vue": "^9.26.0",
"jsdom": "^20.0.3",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.7",
"rollup": "^2.79.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^4.9.5",
"unplugin-vue-components": "^0.22.12",
"vite": "^2.9.18",
"vite-plugin-windicss": "^1.9.3",
"vitepress": "^0.22.4",
"vitest": "^0.34.6",
"vue": "^3.4.27",
"windicss": "^3.5.6"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"{**/*,*}.{js,ts,vue}": [
"eslint --fix"
]
},
"packageManager": "[email protected]+sha512.7c2ea089e1a6af306409c4fc8c4f0897bdac32b772016196c469d9428f1fe2d5a21daf8ad6512762654ac645b5d9136bb210ec9a00afa8dbc4677843ba362ecd"
}