This repository has been archived by the owner on Oct 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
68 lines (68 loc) · 1.74 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
64
65
66
67
68
{
"name": "vue-cleave-component",
"version": "3.0.2",
"description": "Vue.js component for cleave.js",
"main": "dist/vue-cleave.js",
"browser": "dist/vue-cleave.min.js",
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ankurk91/vue-cleave-component.git"
},
"keywords": [
"vue",
"cleave",
"formatting",
"phone",
"currency",
"date",
"masking"
],
"author": "ankurk91",
"license": "MIT",
"bugs": {
"url": "https://github.com/ankurk91/vue-cleave-component/issues"
},
"homepage": "https://github.com/ankurk91/vue-cleave-component",
"scripts": {
"test": "jest",
"test:watch": "npm run test -- --watch --onlyChanged --notify",
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development webpack serve --progress --hot --config=webpack.config.dev.js",
"build": "cross-env NODE_ENV=production webpack --progress --mode=production",
"prepublishOnly": "npm run test && npm run build"
},
"dependencies": {
"cleave.js": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@vue/compiler-sfc": "^3.2.41",
"@vue/test-utils": "^2.1.0",
"babel-jest": "^29.2.0",
"babel-loader": "^8.2.5",
"bootstrap": "^4.6",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.2.0",
"style-loader": "^3.3.1",
"vue": "^3.2.41",
"vue-loader": "^17.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"engines": {
"node": ">=12.13.0"
}
}