UNPKG

@coders-tm/vue-number-format

Version:

Easy formatted numbers, currency and percentage with input/directive mask for Vue.js

104 lines (103 loc) 3.32 kB
{ "name": "@coders-tm/vue-number-format", "version": "3.35.4", "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" ] } }