-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
60 lines (60 loc) · 1.35 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
{
"name": "xgettext-template",
"description": "Extract translatable strings from templates.",
"version": "6.0.0",
"homepage": "https://github.com/gmarty/xgettext",
"author": {
"name": "Guillaume Marty"
},
"contributors": [
{
"name": "Sam Hauglustaine"
}
],
"repository": {
"type": "git",
"url": "git://github.com/gmarty/xgettext.git"
},
"bugs": {
"url": "https://github.com/gmarty/xgettext/issues"
},
"license": "MIT",
"main": "index.js",
"bin": {
"xgettext-template": "bin/xgettext-template"
},
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint bin/* test index.js src",
"test": "mocha",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"preferGlobal": "true",
"dependencies": {
"async": "^3.2.4",
"gettext-ejs": "^0.1.1",
"gettext-handlebars": "^1.1.1",
"gettext-parser": "^8.0.0",
"gettext-swig": "^0.3.0",
"gettext-volt": "^0.2.5",
"object-assign": "^4.1.1",
"yargs": "^17.7.2"
},
"keywords": [
"template",
"gettext",
"i18n"
],
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0"
}
}