-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "i18next-print-keys",
"version": "2.0.0",
"description": "i18next preprocessor to print translation keys including interpolated values.",
"author": "Widen",
"license": "ISC",
"packageManager": "[email protected]",
"repository": "github:Widen/i18next-print-keys",
"homepage": "https://github.com/Widen/i18next-print-keys#readme",
"bugs": {
"url": "https://github.com/Widen/i18next-print-keys/issues"
},
"keywords": [
"i18next",
"i18next-plugin",
"i18next-preprocessor"
],
"type": "module",
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "jest",
"format": "prettier --write .",
"release": "yarn tsc && yarn changeset publish"
},
"peerDependencies": {
"i18next": ">=20"
},
"devDependencies": {
"@changesets/cli": "^2.18.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.2.0",
"i18next": "^21.4.1",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}