forked from zaach/jsxgettext
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.36 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
{
"author": "Zach Carter <zcarter@mozilla.com> (http://twitter.com/zii)",
"contributors": [
"Szigetvári Áron (https://github.com/AronSzigetvari)",
"Arpad Borsos <arpad.borsos@googlemail.com> (http://swatinem.de/)",
"Damian Krzeminski <pirxpilot@code42day.com> (http://pirxpilot.me/)",
"Doug Beck <doug@douglasbeck.com> (http://douglasbeck.com/)",
"Chia-liang Kao <clkao@clkao.org> (http://www.clkao.org/)",
"Vlad Filippov <github@vf.io> (http://vf.io)",
"Lloyd Hilaiel <lloyd@hilaiel.com> (http://lloyd.io)",
"Burak Yigit Kaya <me@byk.im> (http://byk.im)",
"Ryan Kelly <ryan@rfk.id.au> (http://www.rfk.id.au)",
"Austin King <shout@ozten.com> (https://ozten.com)",
"Kaare A. Larsen <kaare.a.larsen@gmail.com> (http://bottleno.se)",
"Francois Marier <francois@fmarier.org> (http://fmarier.org)",
"Eduardo Vaz de Mello (https://github.com/wirapuru)",
"Justin van der Merwe (https://github.com/justinvdm)",
"Andris Reinman <andris.reinman@gmail.com> (http://www.andrisreinman.com)",
"Valentin Rouet <v.rouet@gmail.com> (https://github.com/vrouet)",
"Sergey Slipchenko <faergeek@gmail.com> (https://github.com/faergeek)",
"Gero Takke <gero@gerotakke.de>",
"Michael Weibel (https://github.com/mweibel)",
"Yasu <mahata777@gmail.com> (https://github.com/mahata)",
"Marcus (https://github.com/mphasize)"
],
"name": "@yola/jsxgettext",
"version": "1.0.2-yola1",
"license": "MPL-2.0",
"description": "Extracts gettext strings from JavaScript, EJS, Jinja and Handlebars files.",
"keywords": [
"i18n",
"internationalization",
"gettext",
"xgettext"
],
"homepage": "https://github.com/zaach/jsxgettext",
"bugs": "https://github.com/zaach/jsxgettext/issues",
"repository": {
"type": "git",
"url": "git://github.com/zaach/jsxgettext.git"
},
"main": "lib/jsxgettext.js",
"bin": "lib/cli.js",
"preferGlobal": true,
"engineStrict": true,
"engines": {
"node": ">= 4.0.0"
},
"dependencies": {
"acorn": "^7.1.0",
"acorn-jsx": "^5.1.0",
"acorn-walk": "^7.0.0",
"commander": "^2.9.0",
"escape-string-regexp": "^1.0.4",
"gettext-parser": "^1.1.2",
"gulp-static-i18n": "1.0.1"
},
"devDependencies": {
"i18n-abide": "0.0.17",
"jshint": "2.5.5",
"test": "*"
},
"scripts": {
"test": "node ./node_modules/jshint/bin/jshint . && node test"
}
}