-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
102 lines (102 loc) · 3 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "vue-tel-input-vuetify",
"version": "1.5.3",
"description": "International Telephone Input with Vuetify",
"author": "Yoga Kurniawan <[email protected]>",
"scripts": {
"build": "set NODE_ENV=production && npm run build:browser && npm run build:es && npm run build:umd",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint --fix",
"build:browser": "rollup --config build/rollup.config.browser.js",
"build:es": "rollup --config build/rollup.config.es.js",
"build:umd": "rollup --config build/rollup.config.umd.js",
"commit": "git-cz",
"demo": "vue-cli-service build",
"dev": "vue-cli-service serve"
},
"main": "dist/vue-tel-input-vuetify.umd.js",
"module": "dist/vue-tel-input-vuetify.esm.js",
"unpkg": "dist/vue-tel-input-vuetify.min.js",
"files": [
"dist/",
"src/",
"lib/"
],
"dependencies": {
"awesome-phonenumber": "^2.15.0",
"vuetify": "^2.2.11",
"whatwg-fetch": "^3.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.6.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^8.0.0",
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-plugin-unit-jest": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"commitizen": "^4.2.2",
"core-js": "^2.6.5",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^8.1.5",
"rollup": "^1.10.0",
"rollup-plugin-analyzer": "^3.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-vue": "^5.0.0",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"semantic-release": "^17.2.3",
"vue": "^2.6.10",
"vue-cli-plugin-vuetify": "~2.0.5",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.3.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"homepage": "https://yogakurniawan.github.io/vue-tel-input-vuetify/",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"vue",
"vuetify",
"telephone",
"phone",
"vue-tel-input",
"phone input",
"telephone input",
"input",
"international phone"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yogakurniawan/vue-tel-input-vuetify.git"
}
}