mirror of
https://github.com/tenrok/maska.git
synced 2026-06-17 19:21:21 +03:00
New version code prepare
This commit is contained in:
+43
-34
@@ -1,50 +1,59 @@
|
||||
{
|
||||
"name": "maska",
|
||||
"version": "1.5.1",
|
||||
"description": "Simple zero-dependency input mask for Vue.js and vanilla JS",
|
||||
"description": "Simple zero-dependency input mask for Vue 2/3 or Vanilla JS",
|
||||
"keywords": [
|
||||
"mask",
|
||||
"input",
|
||||
"inputmask",
|
||||
"vue"
|
||||
],
|
||||
"author": "Alexander Shabunevich <alex@aether.ru>",
|
||||
"author": "Alexander Shabunevich",
|
||||
"homepage": "https://beholdr.github.io/maska/",
|
||||
"repository": {
|
||||
"url": "https://github.com/beholdr/maska",
|
||||
"type": "git"
|
||||
},
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"serve": "rimraf dist && NODE_ENV=development rollup -c --watch",
|
||||
"build": "rimraf dist && NODE_ENV=production rollup -c && NODE_ENV=production DISABLE_BABEL=yes rollup -c",
|
||||
"test": "jest",
|
||||
"lint": "standard 'src/**'",
|
||||
"lint:fix": "standard 'src/**' --fix"
|
||||
},
|
||||
"main": "dist/maska.umd.js",
|
||||
"module": "dist/maska.esm.js",
|
||||
"unpkg": "dist/maska.umd.js",
|
||||
"jsdelivr": "dist/maska.umd.js",
|
||||
"types": "types/index.d.ts",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.7.5",
|
||||
"@babel/preset-env": "^7.7.5",
|
||||
"babel-jest": "^27.2.4",
|
||||
"jest": "^27.2.4",
|
||||
"rimraf": "^3.0.0",
|
||||
"rollup": "^2.0.2",
|
||||
"rollup-plugin-babel": "^4.4.0",
|
||||
"rollup-plugin-terser": "^7.0.0",
|
||||
"standard": "^16.0.3",
|
||||
"typescript": "^4.1.2"
|
||||
},
|
||||
"browserslist": [
|
||||
"> 0.25%",
|
||||
"ie 11"
|
||||
"type": "module",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"babel": {
|
||||
"presets": [
|
||||
"@babel/preset-env"
|
||||
]
|
||||
"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",
|
||||
"preversion": "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": "^7.4.0",
|
||||
"ts-standard": "^12.0.0",
|
||||
"typescript": "^4.6.4",
|
||||
"vite": "^3.1.0",
|
||||
"vite-plugin-banner": "^0.6.1",
|
||||
"vite-plugin-dts": "^1.6.5",
|
||||
"vitest": "^0.25.0",
|
||||
"vue": "^3.2.41",
|
||||
"vue-live": "^2.1.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user