2
0
mirror of https://github.com/tenrok/maska.git synced 2026-06-20 20:00:34 +03:00

Initial commit

This commit is contained in:
Alexander Shabunevich
2019-09-25 15:22:31 +03:00
commit 0690000a62
14 changed files with 9037 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
{
"name": "maska",
"version": "1.0.0",
"description": "Simple zero-dependency input mask for Vue.js and vanilla JS",
"keywords": [
"mask",
"input",
"vue"
],
"author": "Alexander Shabunevich <alex@aether.ru>",
"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.6.0",
"@babel/preset-env": "^7.6.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"standard": "^14.3.1",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"browserslist": "> 0.25%, ie 11",
"babel": {
"presets": [
"@babel/preset-env"
]
}
}