This repository has been archived by the owner on Apr 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
113 lines (113 loc) · 3.44 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
{
"name": "vue-i18n-composable",
"description": "Composition API for vue-i18n in Vue 2.x",
"version": "2.0.0",
"author": "Anthony Fu <[email protected]>",
"packageManager": "[email protected]",
"bugs": {
"url": "https://github.com/inlitify/vue-i18n-composable/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"
}
},
"devDependencies": {
"@kazupon/lerna-changelog": "^4.3.0",
"@secretlint/secretlint-rule-preset-recommend": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@types/jest": "^27.0.1",
"@vue/test-utils": "^1.3.0",
"@vue/vue2-jest": "^28.0.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.1",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"secretlint": "^3.3.0",
"shipjs": "^0.23.3",
"ts-jest": "^27.0.5",
"tsup": "^4.14.0",
"typescript": "^4.4.2",
"vue": "^2.7.1",
"vue-i18n": "^8.25.0",
"vue-template-compiler": "^2.7.1",
"yorkie": "^2.0.0"
},
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"files": [
"dist"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://github.com/intlify/vue-i18n-composable/tree/master#readme",
"keywords": [
"composition-api",
"i18n",
"internationalization",
"intlify",
"vue",
"vue-i18n",
"vue.js"
],
"license": "MIT",
"lint-staged": {
"*.{json,md,yml}": [
"prettier --write"
],
"*.{js,vue}": [
"prettier --write",
"eslint --fix --ext .js,.vue"
],
"*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint --fix --ext .ts"
],
"*": [
"secretlint"
]
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"peerDependencies": {
"vue": ">=2.7 <3",
"vue-i18n": ">=8 <9"
},
"repository": "https://github.com/intlify/vue-i18n-composable",
"scripts": {
"build": "tsup src/index.ts --format iife,cjs,esm --dts --external vue,vue-i18n,@vue/composition-api",
"dev": "npm run build -- --watch",
"fix": "run-p lint:fix format:fix",
"format:fix": "run-p \"format:prettier --write\"",
"format:prettier": "prettier --config .prettierrc --ignore-path .prettierignore '**/*.{js,json,html}'",
"lint": "run-p lint:secret lint:codes",
"lint:codes": "eslint ./src --ext .js,.ts,.vue,.json",
"lint:fix": "run-p \"lint:codes --fix\"",
"lint:secret": "secretlint \"**/*\"",
"prepublishOnly": "npm run build",
"release": "npx bumpp --commit --tag && npm publish && git push",
"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger",
"test": "npm run test:cover",
"test:cover": "npm run test:unit -- --coverage",
"test:unit": "jest --clearCache && jest --env node"
},
"sideEffects": false,
"types": "dist/index.d.ts"
}