-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 1.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "handlebars-i18n",
"version": "1.8.1",
"description": "handlebars-i18n adds internationalization to handlebars.js using i18next and Intl.",
"main": "dist/handlebars-i18n.js",
"scripts": {
"test": "NODE_ENV=TEST c8 mocha",
"test:coverage": "npm run test && NODE_ENV=TEST c8 report --reporter=text-lcov > coverage/lcov.info",
"compress": "gulp compress",
"example:js": "cd examples/node-example && node simple-example.js",
"example:ts": "cd examples/typescript && tsc && node index.js"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/aller-couleur/handlebars-i18n.git"
},
"keywords": [
"Translation",
"Multi-language",
"Internationalization",
"Localization",
"Globalization",
"Date Formatting",
"Relative Dates",
"Currency Formatting",
"Number Formatting",
"Handlebars",
"i18next",
"i18n",
"Intl",
"Helper",
"Typescript",
"handlebars-i18next"
],
"author": "Florian Walzel",
"license": "MIT",
"homepage": "https://github.com/aller-couleur/handlebars-i18n.git#readme",
"peerDependencies": {
"handlebars": "^4.7.7",
"i18next": "^21.6.14",
"intl": "^1.2.5"
},
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "16.2.1",
"@types/intl": "^1.2.0",
"@types/node": "^18.13.0",
"c8": "^10.1.2",
"chai": "4.3.6",
"coveralls-next": "^4.2.1",
"gulp": "5.0.0",
"gulp-rename": "2.0.0",
"gulp-uglify": "3.0.2",
"gulp-uglify-es": "3.0.0",
"html-entities": "^2.5.2",
"husky": "7.0.4",
"mocha": "10.7.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "15.1.0",
"typescript": "^4.9.5"
},
"dependencies": {
"handlebars": "^4.7.7",
"i18next": "^21.6.14",
"intl": "^1.2.5",
"relative-time-format": "^1.1.6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scheduleVersion": "1.4.2"
}