forked from GUI/gettext-vue
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 983 Bytes
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
{
"name": "gettext-vue",
"version": "0.4.1",
"description": "Extract translatable strings from Vue files",
"main": "src/parser.js",
"bin": {
"xgettext-vue": "bin/xgettext-vue"
},
"directories": {
"test": "test"
},
"scripts": {
"pretest": "eslint src/parser.js",
"test": "ava ./test/test.js"
},
"repository": "https://github.com/GUI/gettext-vue.git",
"keywords": [
"vue",
"gettext",
"i18n",
"translate",
"translation"
],
"author": "Nick Muerdter",
"license": "MIT",
"bugs": {
"url": "https://github.com/GUI/gettext-vue/issues"
},
"homepage": "https://github.com/GUI/gettext-vue",
"dependencies": {
"async": "^3.2.0",
"gettext-parser": "^4.0.2",
"object-assign": "^4.1.1",
"yargs": "^15.1.0"
},
"devDependencies": {
"ava": "^3.5.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1"
},
"engines": {
"node": ">=6"
}
}