This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "vue-jquery-mask",
"version": "2.0.0",
"description": "Vue.js component for jquery mask plugin",
"main": "dist/vue-jquery-mask.js",
"browser": "dist/vue-jquery-mask.min.js",
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ankurk91/vue-jquery-mask.git"
},
"keywords": [
"vue",
"mask",
"jquery",
"input-mask"
],
"author": "ankurk91",
"license": "MIT",
"bugs": {
"url": "https://github.com/ankurk91/vue-jquery-mask/issues"
},
"homepage": "https://github.com/ankurk91/vue-jquery-mask",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "yarn run dev",
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot --config=webpack.config.dev.js",
"build": "cross-env NODE_ENV=production webpack --progress --mode production",
"prepublishOnly": "yarn run build"
},
"dependencies": {
"jquery": ">=1.7.0",
"jquery-mask-plugin": "^1.14.16"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@vue/compiler-sfc": "^3.0.2",
"babel-loader": "^8.1.0",
"bootstrap": "^4.5.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.0",
"file-loader": "^6.1.1",
"html-webpack-plugin": "^4.5.0",
"style-loader": "^2.0.0",
"unminified-webpack-plugin": "^2.0.0",
"vue": "^3",
"vue-loader": "^16.0.0-beta.9",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"vue": "^3.0.2"
},
"engines": {
"node": ">=10.13"
}
}