-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 KB
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
{
"name": "gettext-parser",
"description": "Parse and compile gettext po and mo files to/from json, nothing more, nothing less",
"version": "9.0.2",
"author": "Andris Reinman",
"contributors": [
{
"name": "Sam Hauglustaine"
}
],
"homepage": "http://github.com/smhg/gettext-parser",
"repository": {
"type": "git",
"url": "http://github.com/smhg/gettext-parser.git"
},
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "eslint lib/*.js test/*.js index.js",
"test-generate-mo": "msgfmt test/fixtures/latin13.po -o test/fixtures/latin13.mo & msgfmt test/fixtures/utf8.po -o test/fixtures/utf8.mo & msgfmt test/fixtures/obsolete.po -o test/fixtures/obsolete.mo",
"test": "node --test",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"main": "./index.js",
"files": [
"lib",
"index.js",
"CHANGELOG.md"
],
"license": "MIT",
"dependencies": {
"content-type": "^1.0.5",
"encoding": "^0.1.13"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.6.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.0.0"
},
"keywords": [
"i18n",
"l10n",
"gettext",
"mo",
"po"
]
}