forked from niksmr/vue-masked-input
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "vue-masked-input",
"description": "Masked input component for Vue.js 2.X",
"version": "0.5.2",
"author": "niksmr",
"license": "MIT",
"homepage": "https://github.com/niksmr/vue-masked-input",
"main": "dist/maskedInput.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --inline --hot",
"lint": "./node_modules/.bin/eslint src/MaskedInput.js",
"babel": "npm run babel-component & npm run babel-poly",
"babel-component": "babel src/ff-polyfill.js --out-file dist/ff-polyfill.js",
"babel-poly": "babel src/MaskedInput.js --out-file dist/maskedInput.js",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules & npm run babel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niksmr/vue-masked-input.git"
},
"keywords": [
"vue",
"mask",
"masked",
"input"
],
"dependencies": {
"inputmask-core": "^2.2.0",
"vue": "^2.2.6"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.0.0",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.0.0",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"file-loader": "^0.11.1",
"vue-loader": "^12.0.0",
"vue-template-compiler": "^2.1.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
}
}