forked from alexanderwallin/node-gettext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 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
59
60
61
{
"name": "@postalsys/gettext",
"description": "A JavaScript implementation of gettext, a localization framework",
"version": "4.0.1",
"author": "Andris Reinman",
"maintainers": [
{
"name": "Andris Reinman",
"email": "[email protected]"
}
],
"homepage": "http://github.com/postalsys/gettext",
"repository": {
"type": "git",
"url": "http://github.com/postalsys/gettext.git"
},
"scripts": {
"test": "grunt",
"docs": "jsdoc2md -f lib/gettext.js -t docs/README.template.md --partial docs/templates/*.hbs --param-list-format list > README.md",
"update": "rm -rf node_modules package-lock.json && ncu -u && npm install"
},
"main": "./lib/gettext.js",
"files": [
"lib",
"test"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/postalsys/gettext/blob/master/LICENSE"
}
],
"dependencies": {
"lodash.get": "4.4.2"
},
"devDependencies": {
"chai": "4.4.1",
"eslint": "8.57.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "9.1.0",
"grunt": "1.6.1",
"grunt-cli": "1.5.0",
"grunt-contrib-jshint": "3.2.0",
"grunt-eslint": "24.3.0",
"grunt-mocha-test": "0.13.3",
"jsdoc-to-markdown": "9.0.2",
"mocha": "10.7.3",
"sinon": "19.0.2"
},
"engine": {
"node": ">=16"
},
"keywords": [
"i18n",
"l10n",
"internationalization",
"localization",
"translation",
"gettext"
]
}