-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
80 lines (80 loc) · 1.57 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "po2json",
"description": "Convert PO files to JSON",
"version": "1.0.0-beta-3",
"homepage": "https://github.com/mikeedwards/po2json",
"author": {
"name": "Joshua I. Miller",
"email": "unrtst@cpan.org"
},
"contributors": [
{
"name": "Zach Carter",
"email": "zcarter@cse.usf.edu"
},
{
"name": "Daniel Roberts",
"email": "danielrobertsdesign@gmail.com"
},
{
"name": "Mike Edwards",
"email": "michael.edwards@huffingtonpost.com"
},
{
"name": "Illimar Tambek",
"email": "illimar@sliptree.com"
},
{
"name": "mahata",
"email": "mahata777@gmail.com"
},
{
"name": "Szigetvári Áron"
},
{
"name": "rafalt-iRonin"
},
{
"name": "Alex Petty",
"email": "pettyalex@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/mikeedwards/po2json.git"
},
"bugs": {
"url": "https://github.com/mikeedwards/po2json/issues"
},
"license": "LGPL-2.0-or-later",
"bin": {
"po2json": "bin/po2json"
},
"engines": {
"node": ">=10.0"
},
"scripts": {
"test": "jest"
},
"devDependencies": {
"jed": "~1.1.1",
"jest": "^26.1.0",
"messageformat": "^2.3.0"
},
"keywords": [
"i18n",
"l10n",
"gettext",
"po"
],
"dependencies": {
"commander": "^6.0.0",
"gettext-parser": "2.0.0",
"gettext-to-messageformat": "0.3.1"
},
"peerDependencies": {
"commander": "^6.0.0",
"gettext-parser": "2.0.0",
"gettext-to-messageformat": "0.3.1"
}
}