forked from mozilla/i18n-abide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"author": "Austin King <[email protected]> (http://ozten.com)",
"name": "i18n-abide",
"description": "Express/connect module for Node i18n and l10n support",
"version": "0.0.8beta4",
"homepage": "https://github.com/mozilla/i18n-abide",
"repository": {
"type": "git",
"url": "git://github.com/mozilla/i18n-abide.git"
},
"bugs": {
"url": "http://github.com/mozilla/i18n-abide/issues"
},
"main": "lib/i18n.js",
"engines": {
"node": ">= 0.6.2"
},
"dependencies": {
"async": "0.1.22",
"gobbledygook": "0.0.3",
"jsxgettext": "0.0.4",
"optimist": "0.3.4"
},
"devDependencies": {
"vows": "0.5.13"
},
"scripts": {
"test": "NODE_PATH=lib node_modules/.bin/vows tests/*-tests.js --spec"
},
"bin": {
"check-l10n-config": "bin/check-l10n-config.js",
"check-po": "bin/check-po.sh",
"compile-json": "bin/compile-json",
"compile-mo": "bin/compile-mo.sh",
"every-locale.js": "bin/every-locale.js",
"extract-pot": "bin/extract-pot",
"merge-po": "bin/merge-po.sh",
"po2json.js": "bin/po2json.js"
},
"licenses": [ {
"type": "MPL 2.0",
"url": "http://www.mozilla.org/MPL/2.0/"
} ],
"keywords": ["express", "connect", "l10n", "i18n", "gettext"]
}