mirror of
https://github.com/tenrok/maska.git
synced 2026-05-15 11:59:38 +03:00
60 lines
1.5 KiB
JSON
60 lines
1.5 KiB
JSON
{
|
|
"name": "maska",
|
|
"version": "2.1.3",
|
|
"description": "Simple zero-dependency input mask for Vue 2/3 or Vanilla JS",
|
|
"keywords": [
|
|
"mask",
|
|
"inputmask",
|
|
"vue"
|
|
],
|
|
"author": "Alexander Shabunevich",
|
|
"homepage": "https://beholdr.github.io/maska/",
|
|
"repository": {
|
|
"url": "https://github.com/beholdr/maska",
|
|
"type": "git"
|
|
},
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"types": "./dist/types/index.d.ts",
|
|
"main": "./dist/maska.umd.js",
|
|
"module": "./dist/maska.js",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/maska.js",
|
|
"require": "./dist/maska.umd.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"build:watch": "vite build --watch",
|
|
"build:demo": "vite build --config vite.config.demo.ts",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"lint": "ts-standard src",
|
|
"lint:fix": "ts-standard --fix src",
|
|
"version": "npm run build && npm test"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/dom": "^8.17.1",
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"@types/node": "^18.6.4",
|
|
"@vitejs/plugin-vue": "^3.2.0",
|
|
"@vitest/coverage-c8": "^0.25.0",
|
|
"@vue/test-utils": "^2.2.1",
|
|
"happy-dom": "^8.1.0",
|
|
"ts-standard": "^12.0.0",
|
|
"typescript": "^4.6.4",
|
|
"vite": "^3.1.0",
|
|
"vite-plugin-banner": "^0.7.0",
|
|
"vite-plugin-dts": "^1.6.5",
|
|
"vitest": "^0.25.0",
|
|
"vue": "^3.2.41",
|
|
"vue-live": "^2.1.0"
|
|
}
|
|
}
|