forked from smhg/gettext-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "gettext-parser",
"description": "Parse and compile gettext po and mo files to/from json, nothing more, nothing less",
"version": "8.0.0",
"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": ">=18"
},
"scripts": {
"lint": "eslint src/*.js test/*.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": "mocha",
"test:coverage": "npx c8 --check-coverage npm run test",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm i && tsc && npm run lint && npm run test"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
"dependencies": {
"content-type": "^1.0.5",
"encoding": "^0.1.13",
"readable-stream": "^4.5.2"
},
"devDependencies": {
"@types/chai": "latest",
"@types/content-type": "^1.1.8",
"@types/mocha": "latest",
"@types/readable-stream": "^4.0.11",
"chai": "^5.0.3",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.4.0",
"typescript": "^5.4.5"
},
"keywords": [
"i18n",
"l10n",
"gettext",
"mo",
"po"
]
}