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
| {
| "name": "vue-cli-plugin-i18n",
| "description": "Vue CLI plugin to add vue-i18n to your Vue Project",
| "version": "2.3.2",
| "author": {
| "name": "kazuya kawaguchi",
| "email": "kawakazu80@gmail.com"
| },
| "bugs": {
| "url": "https://github.com/intlify/vue-cli-plugin-i18n/issues"
| },
| "changelog": {
| "labels": {
| "Type: Feature": ":star: Features",
| "Type: Bug": ":bug: Bug Fixes",
| "Type: Security": ":lock: Security Fixes",
| "Type: Performance": ":chart_with_upwards_trend: Performance Fixes",
| "Type: Improvement": ":zap: Improvement Features",
| "Type: Breaking": ":boom: Breaking Change",
| "Type: Deprecated": ":warning: Deprecated Features",
| "Type: I18n": ":globe_with_meridians: Internationalization",
| "Type: A11y": ":wheelchair: Accessibility",
| "Type: Documentation": ":pencil: Documentation"
| }
| },
| "dependencies": {
| "debug": "^4.3.0",
| "deepmerge": "^4.2.0",
| "dotenv": "^8.2.0",
| "flat": "^5.0.0",
| "rimraf": "^3.0.0",
| "vue": "^2.6.11",
| "vue-i18n": "^8.17.0",
| "vue-i18n-extract": "^1.0.2"
| },
| "devDependencies": {
| "@vue/cli": "^4.5.10",
| "@vue/cli-service": "^4.5.10",
| "@vue/cli-test-utils": "^4.5.10",
| "@vue/cli-shared-utils": "^4.5.10",
| "eslint": "^7.17.0",
| "eslint-config-prettier": "^7.1.0",
| "eslint-plugin-prettier": "^3.3.0",
| "eslint-plugin-vue": "^6.2.2",
| "eslint-plugin-vue-libs": "^4.0.0",
| "inquirer": "^7.3.3",
| "jest": "^26.6.0",
| "lerna-changelog": "^1.0.1",
| "npm-run-all": "^4.1.5",
| "shipjs": "^0.23.0"
| },
| "engines": {
| "node": ">= 12"
| },
| "homepage": "https://github.com/intlify/vue-cli-plugin-i18n#readme",
| "keywords": [
| "plugin",
| "vue",
| "vue-cli",
| "vue-i18n"
| ],
| "license": "MIT",
| "main": "index.js",
| "repository": {
| "type": "git",
| "url": "git+https://github.com/intlify/vue-cli-plugin-i18n.git"
| },
| "scripts": {
| "clean": "npm-run-all --parallel clean:*",
| "clean:cache": "jest --clearCache",
| "clean:test": "rimraf coverage tests/e2e/projects/*",
| "fix": "npm-run-all --parallel lint:fix format:fix",
| "format": "prettier --config .prettierrc --ignore-path .prettierignore '**/*.{js,json,html}'",
| "format:fix": "yarn format --write",
| "lint": "eslint . ./generator ./tests --ext .js",
| "lint:fix": "yarn lint --fix",
| "release:prepare": "shipjs prepare",
| "release:trigger": "shipjs trigger",
| "test": "npm run test:unit",
| "test:e2e": "npm-run-all clean:* && jest --runInBand --config ./jest.config.js ./tests/e2e/*.spec.js",
| "test:unit": "yarn clean:cache && jest --config ./jest.config.js ./tests/unit/*.spec.js"
| }
| }
|
|