-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
103 lines (103 loc) · 3.24 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@coders-tm/vue-number-format",
"version": "3.34.1",
"private": false,
"description": "Easy formatted numbers, currency and percentage with input/directive mask for Vue.js",
"author": "Dipak Sarkar <hello@dipaksarkar.in> (https://dipaksarkar.in/)",
"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,
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.js && rimraf dist/src",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint --no-fix --max-warnings 0 {**/*,*}.{js,ts,vue}",
"push": "clear && git config core.ignorecase false && branch=\"$(git symbolic-ref -q HEAD)\" || \"dev\" && branch=${branch##refs/heads/} && branch=${branch:-HEAD} && echo Pushing to Branch \"$branch\" && echo Please type your commit message && read msg && clear && git add . && git commit -m \"$msg\" && git push origin \"$branch\""
},
"bugs": {
"url": "https://github.com/coders-tm/vue-number-format/issues"
},
"homepage": "https://vue-number-format.netlify.app",
"keywords": [
"vue",
"currency directive",
"percentage input",
"v-money",
"v-currency",
"v-percentage",
"input mask",
"number format",
"currency input",
"money input",
"v-number"
],
"repository": {
"type": "git",
"url": "https://github.com/coders-tm/vue-number-format.git"
},
"publishConfig": {
"@coders-tm:registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@testing-library/dom": "^8.18.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-c8": "^0.23.4",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.0.0",
"@vuepress/plugin-google-analytics": "^2.0.0-beta.61",
"@vuepress/plugin-register-components": "^2.0.0-beta.61",
"@vuepress/plugin-search": "^2.0.0-beta.61",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^9.5.1",
"jsdom": "latest",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.0",
"rollup-plugin-vue": "^6.0.0",
"simple-git-hooks": "^2.8.0",
"typescript": "^4.8.4",
"unplugin-vue-components": "^0.22.7",
"vite": "^4.1.1",
"vite-plugin-windicss": "^1.8.10",
"vitest": "latest",
"vue": "^3.0.0",
"vuepress": "^2.0.0-beta.61",
"windicss": "^3.5.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"{**/*,*}.{js,ts,vue}": [
"eslint --fix"
]
}
}