-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "gettext-handlebars",
"version": "1.1.1",
"description": "Extract translatable strings from Handlebars templates",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"lint": "eslint index.js test",
"test": "mocha",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/smhg/gettext-handlebars.git"
},
"keywords": [
"handlebars",
"gettext",
"hbs",
"i18n",
"translate",
"translation"
],
"author": "Sam Hauglustaine",
"license": "MIT",
"bugs": {
"url": "https://github.com/smhg/gettext-handlebars/issues"
},
"homepage": "https://github.com/smhg/gettext-handlebars",
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.2.0"
},
"dependencies": {
"handlebars": "^4.5.2"
}
}