-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
114 lines (114 loc) · 3.39 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "vue-i18n-locale-message",
"description": "i18n locale messages management tool / library for vue-i18n",
"version": "2.0.0-beta.6",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"bin": "lib/cli.js",
"bugs": {
"url": "https://github.com/kazupon/vue-i18n-locale-message/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": {
"@intlify/cli": "^0.10.0",
"@vue/component-compiler-utils": "^3.0.0",
"cosmiconfig": "^7.0.1",
"debug": "^4.1.1",
"deep-diff": "^1.0.2",
"deepmerge": "^4.2.2",
"flat": "^5.0.0",
"glob": "^7.1.4",
"ignore": "^5.1.8",
"js-yaml": "^3.13.1",
"json-diff": "^0.5.4",
"json5": "^2.1.0",
"prettier": "^2.4.1",
"prettier-plugin-sort-json": "^0.0.2",
"query-string": "^7.0.1",
"yargs": "^15.1.0"
},
"devDependencies": {
"@sucrase/jest-plugin": "^2.1.0",
"@types/debug": "^4.1.4",
"@types/deep-diff": "^1.0.0",
"@types/deepmerge": "^2.2.0",
"@types/flat": "^5.0.0",
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.0",
"@types/js-yaml": "^3.12.1",
"@types/json5": "^0.0.30",
"@types/node": "^12.6.8",
"@types/prettier": "^2.0.0",
"@types/yargs": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"@vue/compiler-sfc": "^3.0.11",
"eslint": "^7.4.0",
"eslint-plugin-vue-libs": "^4.0.0",
"jest": "^26.0.0",
"jest-watch-typeahead": "^0.6.0",
"lerna-changelog": "^1.0.0",
"opener": "^1.5.1",
"shipjs": "^0.23.0",
"ts-jest": "^26.0.0",
"tsd": "^0.13.0",
"typescript": "^3.9.5",
"typescript-eslint-language-service": "^3.0.0",
"vue": "^3.0.11"
},
"engines": {
"node": ">= 12"
},
"files": [
"types/shims-vue-template-compiler.d.ts",
"types/index.d.ts",
"lib"
],
"homepage": "https://github.com/kazupon/vue-i18n-locale-message#readme",
"keywords": [
"i18n",
"messages",
"vue",
"vue-i18n"
],
"license": "MIT",
"main": "lib/index.js",
"peerDependencies": {
"@vue/compiler-sfc": "^3.0.11",
"vue": "^3.0.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kazupon/vue-i18n-locale-message.git"
},
"scripts": {
"build": "tsc -p .",
"build:watch": "tsc -p . --watch",
"clean": "rm -rf ./coverage",
"coverage": "opener coverage/lcov-report/index.html",
"lint": "eslint ./src ./test --ext .ts --ignore-pattern \"*.test.*\"",
"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger",
"test": "npm run lint && npm run test:types && npm run test:cover && npm run build",
"test:cover": "npm run test:unit -- --coverage",
"test:unit": "jest --clearCache && jest --env node",
"test:types": "tsd",
"test:watch": "jest --env node --watch"
},
"types": "types/index.d.ts"
}