-
Notifications
You must be signed in to change notification settings - Fork 154
/
package.json
85 lines (85 loc) · 2.46 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
{
"name": "vue-phone-number-input",
"version": "1.12.13",
"description": "A phone number input made with Vue JS && libphonenumber-js",
"author": "Louis Mazel <me@loicmazuel.com>",
"scripts": {
"serve": "vue-cli-service serve --mode development --open",
"serve:nuxt": "nuxt src",
"build": "npm run build:lib && npm run build:docs",
"test": "vue-cli-service test:unit /test/specs",
"lint": "vue-cli-service lint && npm run lint:style",
"lint:style": "stylelint 'src/**/*{.scss,.vue}'",
"lint:style:fix": "npm run lint -- --fix",
"before-publish": "npm run lint && npm i && npm run build",
"build:docs": "vue-cli-service build --dest docs --mode production",
"build:lib": "vue-cli-service build --target lib ./src/VuePhoneNumberInput/index.vue",
"publish-npm:beta": "npm publish --tag beta",
"serve:build": "vue-cli-service serve --mode production",
"test:unit": "vue-cli-service test:unit",
"test:unit:watch": "vue-cli-service test:unit --watch",
"ui": "vue ui"
},
"files": [
"dist/",
"nuxt/"
],
"dependencies": {
"libphonenumber-js": "^1.10.13",
"style-helpers": "^1.0.2",
"vue": "^2.6.0",
"vue-virtual-scroller": "^1.0.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"babel-eslint": "^10.1.0",
"color-transformer-ui": "^1.0.3",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^9.5.1",
"nuxt": "^2.12.2",
"path": "^0.12.7",
"sass": "^1.54.9",
"sass-loader": "^10.3.1",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-order": "^3.1.1",
"stylelint-scss": "^3.17.1",
"vue": "^2.6.14",
"vue-server-renderer": "^2.6.14",
"vue-template-compiler": "^2.6.14"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"keywords": [
"vue",
"vuejs",
"input",
"phone",
"number",
"format",
"text",
"javascript",
"vue-component"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"license": "MIT",
"main": "dist/vue-phone-number-input.common.js",
"repository": {
"type": "git",
"url": "git+https://github.com/LouisMazel/vue-phone-number-input.git"
},
"bugs": {
"url": "https://github.com/LouisMazel/vue-phone-number-input/issues"
},
"homepage": "https://github.com/LouisMazel/vue-phone-number-input#readme",
"types": "dist/index.d.ts"
}