forked from rubenv/angular-gettext-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.16 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
{
"name": "gettext-tools",
"description": "Tools for extracting/compiling PO strings.",
"version": "2.1.7",
"homepage": "http://angular-gettext.rocketeer.be/",
"author": {
"name": "Ruben Vermeersch",
"email": "[email protected]",
"url": "http://rocketeer.be"
},
"contributors": [
{
"name": "Garry Yao",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/engishtown/gettext-tools.git"
},
"bugs": {
"url": "https://github.com/engishtown/gettext-tools/issues"
},
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "~0.4.4",
"grunt-bump": "0.0.13",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-jshint": "~0.11.2",
"grunt-contrib-watch": "~0.6.1",
"grunt-jscs": "^1.8.0",
"grunt-mocha-cli": "^1.13.1"
},
"keywords": [
"javascript",
"gettext",
"l10n",
"i18n"
],
"dependencies": {
"binary-search": "^1.2.0",
"cheerio": "~0.19.0",
"espree": "^2.0.0",
"lodash": "^3.10.0",
"pofile": "~1.0.0"
}
}