-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.76 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
{
"name": "i18next-node-firestore-backend",
"version": "2.0.8",
"license": "MIT",
"description": "Use i18next with Google Firestore as the backend for storing translation data",
"type": "module",
"main": "./dist/index.js",
"homepage": "https://github.com/gregfenton/i18next-node-firestore-backend",
"keywords": [
"i18next",
"firestore",
"google-firestore",
"firebase-firestore",
"google-firebase-firestore",
"i18next-backend",
"i18next-firestore-backend"
],
"author": {
"name": "Greg Fenton",
"url": "https://github.com/gregfenton"
},
"bugs": {
"url": "https://github.com/gregfenton/i18next-node-firestore-backend/issues"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "echo 'testing is done via the apps in examples/*'",
"release-bump:major": "standard-version --release-as major",
"release-bump:minor": "standard-version --release-as minor",
"release-bump:patch": "standard-version --release-as patch",
"release:tag-push": "git push --follow-tags origin main",
"build": "tsc",
"publish-dry-run": "npm run build && npm publish --dry-run",
"publish-publish": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregfenton/i18next-node-firestore-backend.git"
},
"dependencies": {
"firebase": ">=10.12.5",
"i18next": "^23.12.2"
},
"devDependencies": {
"codecov": "^3.8.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"typescript": "^5.5.4"
}
}