-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
31 lines (31 loc) · 832 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
{
"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"
},
"script": {
"test": "./node_modules/.bin/nodeunit test"
},
"keyword": ["gettext", "translation", "localization", "i18n"],
"engines": {
"node": "*"
},
"dependencies": {
"node-po": "https://github.com/dodo/node-po/tarball/master",
"async": "0.1.x"
},
"devDependencies": {
"nodeunit": "0.7.4"
},
"license": "LGPL-2.1"
}