-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
{
"name": "@dzangolab/vue-locale-switcher",
"version": "0.12.1",
"description": "A locale switcher component for vue.js",
"author": {
"name": "Olivier Pichon",
"email": "[email protected]",
"url": "https://github.com/opichon"
},
"scripts": {
"build": "vue-cli-service build --target lib --name localeSwitcher ./src/components/LocaleSwitcher/Index.vue",
"lint": "vue-cli-service lint",
"prepublish": "yarn run lint && yarn run test && yarn run build",
"serve": "vue-cli-service serve",
"test": "yarn run test:unit",
"test:unit": "vue-cli-service test:unit",
"release": "shipjs prepare"
},
"dependencies": {
"bootstrap": "^4.4.1",
"core-js": "^3.6.0",
"vue": "^3.0.0",
"vue-router": "^4.0.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.1",
"@vue/cli-plugin-unit-jest": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-standard": "^5.0.1",
"@vue/test-utils": "^2.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^9.26.0",
"node-sass": "^6.0.0",
"sass-loader": "^10.0.0",
"shipjs": "0.26.3",
"vue-i18n": "^9.0.0",
"vue-jest": "5.0.0-alpha.10"
},
"bugs": "https://github.com/dzangolab/vue-locale-switcher/issues",
"contributors": [
{
"name": "Ramesh Lohala",
"email": "[email protected]"
}
],
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"homepage": "https://github.com/dzangolab/vue-locale-switcher",
"keywords": [
"vuejs",
"i18n"
],
"license": "MIT",
"main": "./dist/localeSwitcher.common.js",
"repository": "github:dzangolab/vue-locale-switcher"
}