vue-tel-input 5.11.0 → 5.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,19 +1,20 @@
1
1
  {
2
2
  "name": "vue-tel-input",
3
- "version": "5.11.0",
3
+ "version": "5.12.0",
4
4
  "description": "International Telephone Input with Vue",
5
5
  "author": "Steven Dao <iamstevendao@gmail.com>",
6
6
  "license": "MIT",
7
- "homepage": "https://iamstevendao.github.io/vue-tel-input/",
7
+ "homepage": "https://vue-tel-input.iamstevendao.com",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/iamstevendao/vue-tel-input.git"
11
11
  },
12
12
  "scripts": {
13
- "serve": "cd docs && npm run serve",
13
+ "dev": "vuepress dev docs",
14
14
  "build": "cp .browserslistrc.legacy .browserslistrc && vue-cli-service build --target lib src/index.js --dest dist",
15
15
  "build:modern": "cp .browserslistrc.modern .browserslistrc && MODERN=true vue-cli-service build --target lib src/index.js --dest dist-modern",
16
- "docs:build": "cd docs && npm run build",
16
+ "docs:dev": "vuepress dev docs",
17
+ "docs:build": "vuepress build docs",
17
18
  "test:unit": "vue-cli-service test:unit",
18
19
  "lint": "vue-cli-service lint",
19
20
  "lint:fix": "vue-cli-service lint --fix",
@@ -28,15 +29,17 @@
28
29
  "jsdelivr": "dist/vue-tel-input.umd.min.js",
29
30
  "dependencies": {
30
31
  "core-js": "^3.14.0",
31
- "libphonenumber-js": "^1.9.6",
32
- "vue": "^2.6.14"
32
+ "libphonenumber-js": "^1.10.12"
33
+ },
34
+ "peerDependencies": {
35
+ "vue": "^2.7.10"
33
36
  },
34
37
  "devDependencies": {
35
38
  "@babel/eslint-parser": "^7.15.8",
36
- "@vue/cli-plugin-babel": "~5.0.0-beta.2",
37
- "@vue/cli-plugin-eslint": "~5.0.0-beta.2",
38
- "@vue/cli-plugin-unit-jest": "~5.0.0-beta.2",
39
- "@vue/cli-service": "~5.0.0-beta.2",
39
+ "@vue/cli-plugin-babel": "^5.0.8",
40
+ "@vue/cli-plugin-eslint": "^5.0.8",
41
+ "@vue/cli-plugin-unit-jest": "^5.0.8",
42
+ "@vue/cli-service": "^5.0.8",
40
43
  "@vue/eslint-config-airbnb": "^5.3.0",
41
44
  "@vue/test-utils": "^1.2.2",
42
45
  "copy-webpack-plugin": "^9.0.1",
@@ -46,7 +49,10 @@
46
49
  "eslint-plugin-vue": "^7.20.0",
47
50
  "lint-staged": "^11.2.3",
48
51
  "vue-jest": "^4.0.1",
49
- "vue-template-compiler": "^2.6.14"
52
+ "vue-template-compiler": "^2.7.10",
53
+ "vue-server-renderer": "^2.7.10",
54
+ "vuepress": "1.8.2",
55
+ "webpack": "^5.1.0"
50
56
  },
51
57
  "gitHooks": {
52
58
  "pre-commit": "lint-staged"