forked from alexanderwallin/node-gettext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 883 Bytes
/
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
{
"name": "node-gettext",
"description": "Gettext client for Node.js to use .mo files for I18N",
"version": "0.2.2",
"author" : "Andris Reinman",
"maintainers":[
{
"name":"andris",
"email":"[email protected]"
}
],
"homepage": "http://github.com/andris9/node-gettext",
"repository" : {
"type" : "git",
"url" : "http://github.com/andris9/node-gettext.git"
},
"scripts":{
"test": "nodeunit test/"
},
"main" : "./index",
"licenses" : [
{
"type": "MIT",
"url": "http://github.com/andris9/node-gettext/blob/master/LICENSE"
}
],
"dependencies": {
"iconv":"*"
},
"devDependencies": {
"nodeunit": "*"
},
"engine": {
"node": ">=0.6"
},
"keywords": ["i18n", "l10n", "gettext", "mo"]
}