mirror of
https://github.com/tenrok/maska.git
synced 2026-05-15 11:59:38 +03:00
42 lines
964 B
JSON
42 lines
964 B
JSON
{
|
|
"name": "maska",
|
|
"version": "1.1.0",
|
|
"description": "Simple zero-dependency input mask for Vue.js and vanilla JS",
|
|
"keywords": [
|
|
"mask",
|
|
"input",
|
|
"vue"
|
|
],
|
|
"author": "Alexander Shabunevich <alex@aether.ru>",
|
|
"homepage": "https://beholdr.github.io/maska/",
|
|
"repository": {
|
|
"url": "https://github.com/beholdr/maska",
|
|
"type": "git"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"serve": "rimraf dist && webpack --watch",
|
|
"build": "rimraf dist && webpack -p",
|
|
"test": "jest",
|
|
"lint": "standard 'src/**'"
|
|
},
|
|
"module": "src/index.js",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.7.5",
|
|
"@babel/preset-env": "^7.7.5",
|
|
"babel-jest": "^24.9.0",
|
|
"babel-loader": "^8.0.6",
|
|
"jest": "^24.9.0",
|
|
"rimraf": "^3.0.0",
|
|
"standard": "^14.3.1",
|
|
"webpack": "^4.41.2",
|
|
"webpack-cli": "^3.3.10"
|
|
},
|
|
"browserslist": "> 0.25%, ie 11",
|
|
"babel": {
|
|
"presets": [
|
|
"@babel/preset-env"
|
|
]
|
|
}
|
|
}
|