forked from xdimedrolx/vue-input-mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
49
50
{
"name": "vue-input-mask",
"version": "0.0.11",
"description": "Masked input component for Vue",
"main": "dist/index.js",
"scripts": {
"dev": "node_modules/.bin/webpack-dev-server --config ./build/webpack.dev.conf.js",
"build:doc": "webpack -p --hide-modules --config ./build/webpack.dev.conf.js",
"build": "webpack -p --hide-modules --config ./build/webpack.prod.conf.js",
"release": "bash ./build/release.sh",
"unit": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/xdimedrolx/vue-input-mask.git"
},
"keywords": [
"vue",
"input",
"mask",
"masked"
],
"authors": [
"Nikita Lobachev <[email protected]>",
"Dmitriy Verizhnikov <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/xdimedrolx/vue-input-mask/issues"
},
"homepage": "https://github.com/xdimedrolx/vue-input-mask#readme",
"dependencies": {
"vue": "^2.4.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.7",
"del": "^3.0.0",
"react-input-mask": "^1.2.2",
"shelljs": "^0.7.7",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-dev-server": ">=3.1.11",
"webpack-merge": "^4.1.0"
}
}