-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
57 lines (57 loc) · 1.31 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
{
"author": "jamuhl",
"name": "i18next-conv",
"description": "converts .mo and .po files to i18next's json format and vice versa.",
"keywords": [
"i18next",
"gettext"
],
"version": "15.0.0",
"type": "module",
"engines": {
"node": ">= 18.0"
},
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"bin": {
"i18next-conv": "bin/index.js"
},
"files": [
"bin",
"lib",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/i18next/i18next-gettext-converter.git"
},
"license": "SEE LICENSE IN LICENSE.MD",
"scripts": {
"lint": "eslint --cache .",
"test": "mocha",
"cover": "c8 npm test"
},
"dependencies": {
"c8": "^10.1.2",
"colorette": "^2.0.20",
"commander": "^12.1.0",
"gettext-converter": "^1.3.0",
"gettext-parser": "^8.0.0",
"node-gettext": "^3.0.0",
"p-from-callback": "^2.0.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-unicorn": "^56.0.0",
"mocha": "^10.8.2"
}
}