forked from alexanderwallin/node-gettext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.31 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.31 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
53
54
{
"name": "@kemdict/gettext",
"description": "A JavaScript implementation of gettext, a localization framework",
"version": "0.0.2",
"author": "Andris Reinman",
"maintainers": ["Kisaragi Hiu"],
"homepage": "http://github.com/kemdict/gettext",
"repository": {
"type": "git",
"url": "http://github.com/kemdict/gettext.git"
},
"type": "module",
"scripts": {
"fmt": "prettier -w ./lib",
"test": "node --test 'test/**/*.js'",
"test:coverage": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage.info test/gettext.test.js",
"decl": "tsc"
},
"exports": {
".": {
"types": "./types/gettext.d.ts",
"default": "./lib/gettext.js"
},
"./loaders.js": {
"types": "./types/loaders.d.ts",
"default": "./lib/loaders.js"
}
},
"files": ["lib", "test"],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/kemdict/gettext/blob/master/LICENSE"
}
],
"devDependencies": {
"@types/gettext-parser": "^8.0.0",
"@types/node": "^25.0.3",
"gettext-parser": "^9.0.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
},
"engine": {
"node": ">=24"
},
"keywords": [
"i18n",
"l10n",
"internationalization",
"localization",
"translation",
"gettext"
]
}