-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.22 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
{
"name": "vue-i18n-phrase-in-context-editor",
"version": "1.6.0",
"description": "Integrate Phrase In-Context Editor into your Vue I18n app with ease!",
"repository": "https://github.com/phrase/vue-i18n-phrase-in-context-editor.git",
"author": "Jakub Freisler <jakub.freisler(at)gmail.com>",
"license": "MIT",
"main": "./dist/vue-i18n-phrase-in-context-editor.umd.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "vue-cli-service build ---name vueI18nPhraseInContextEditor --target lib index.ts",
"test": "vue-cli-service test:unit",
"test.coverage": "pnpm run test --coverage",
"lint": "vue-cli-service lint --no-fix",
"lint.fix": "vue-cli-service lint",
"docs.dev": "cd ./vuepress && pnpm docs.dev",
"docs.build": "cd ./vuepress && pnpm docs.build",
"release": "semantic-release"
},
"peerDependencies": {
"vue-i18n": ">=8.17.6"
},
"dependencies": {
"@sagi.io/globalthis": "^0.0.2",
"core-js": "^3.33.3"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^29.5.10",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-typescript": "~5.0.8",
"@vue/cli-plugin-unit-jest": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "1.0.0-beta.31",
"@vue/vue2-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"eslint": "^8.54.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-vue": "^9.18.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"semantic-release": "^19.0.5",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"tslib": "^2.4.0",
"typescript": "~4.3.0",
"vue": "2.6.11",
"vue-i18n": "^8.17.7",
"vue-template-compiler": "2.6.11"
},
"keywords": [
"Vue",
"VueJS",
"Vue I18n",
"translate",
"translation",
"i18n",
"l10n",
"localization",
"internationalization",
"Phrase",
"In-Context Editor"
]
}