forked from zaach/jsxgettext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.33 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
{
"author": "Zach Carter <[email protected]> (http://twitter.com/zii)",
"contributors": [
"Szigetvári Áron (https://github.com/AronSzigetvari)",
"Arpad Borsos <[email protected]> (http://swatinem.de/)",
"Damian Krzeminski <[email protected]> (http://pirxpilot.me/)",
"Doug Beck <[email protected]> (http://douglasbeck.com/)",
"Chia-liang Kao <[email protected]> (http://www.clkao.org/)",
"Vlad Filippov <[email protected]> (http://vf.io)",
"Lloyd Hilaiel <[email protected]> (http://lloyd.io)",
"Burak Yigit Kaya <[email protected]> (http://byk.im)",
"Ryan Kelly <[email protected]> (http://www.rfk.id.au)",
"Austin King <[email protected]> (https://ozten.com)",
"Kaare A. Larsen <[email protected]> (http://bottleno.se)",
"Francois Marier <[email protected]> (http://fmarier.org)",
"Eduardo Vaz de Mello (https://github.com/wirapuru)",
"Justin van der Merwe (https://github.com/justinvdm)",
"Andris Reinman <[email protected]> (http://www.andrisreinman.com)",
"Valentin Rouet <[email protected]> (https://github.com/vrouet)",
"Sergey Slipchenko <[email protected]> (https://github.com/faergeek)",
"Gero Takke <[email protected]>",
"Michael Weibel (https://github.com/mweibel)",
"Yasu <[email protected]> (https://github.com/mahata)",
"Marcus (https://github.com/mphasize)"
],
"name": "jsxgettext",
"version": "0.10.2",
"license": "MPL-2.0",
"description": "Extracts gettext strings from JavaScript, EJS, Jade, 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": "^5.1.2",
"acorn-jsx": "^4.0.1",
"commander": "^2.11.0",
"escape-string-regexp": "^1.0.5",
"gettext-parser": "^1.3.0",
"jade": "^1.11.0"
},
"devDependencies": {
"jshint": "2.9.5",
"test": "0.6.0",
"i18n-abide": "0.0.25"
},
"scripts": {
"test": "node ./node_modules/jshint/bin/jshint . && node test"
}
}