forked from DanielBaulig/node-gettext
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 802 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
{
"name": "gettext",
"description": "A GNU gettext implementation for node.js",
"version": "0.0.1",
"homepage": "http://github.com/DanielBaulig/node-gettext",
"repository": {
"type": "git",
"url": "git://github.com/DanielBaulig/node-gettext.git"
},
"author": "Daniel Baulig <[email protected]> (http://www.danielbaulig.de)",
"contributors": ["dodo (https://github.com/dodo)"],
"main": "./lib/gettext.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "./node_modules/.bin/nodeunit test"
},
"keywords": ["gettext", "translation", "localization", "i18n"],
"engines": {
"node": "*"
},
"dependencies": {
"node-po": "git://github.com/highfellow/node-po.git",
"async": "0.1.x"
},
"devDependencies": {
"nodeunit": "0.7.4"
}
}