@transifex/express 3.2.1 → 4.1.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -1
- package/package.json +11 -7
package/README.md
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://www.transifex.com">
|
|
3
|
+
<img src="https://raw.githubusercontent.com/transifex/transifex-javascript/master/media/transifex.png" height="60">
|
|
4
|
+
</a>
|
|
5
|
+
</p>
|
|
6
|
+
<p align="center">
|
|
7
|
+
<i>Transifex Native is a full end-to-end, cloud-based localization stack for moderns apps.</i>
|
|
8
|
+
</p>
|
|
9
|
+
<p align="center">
|
|
10
|
+
<img src="https://github.com/transifex/transifex-javascript/actions/workflows/npm-publish.yml/badge.svg">
|
|
11
|
+
<a href="https://www.npmjs.com/package/@transifex/express">
|
|
12
|
+
<img src="https://img.shields.io/npm/v/@transifex/express.svg">
|
|
13
|
+
</a>
|
|
14
|
+
<a href="https://developers.transifex.com/docs/native">
|
|
15
|
+
<img src="https://img.shields.io/badge/docs-transifex.com-blue">
|
|
16
|
+
</a>
|
|
17
|
+
</p>
|
|
18
|
+
|
|
19
|
+
# Transifex Native SDK: Express i18n middleware
|
|
2
20
|
|
|
3
21
|
Express middleware for server side localization using [Transifex Native](https://www.transifex.com/native/).
|
|
4
22
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@transifex/express",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "4.1.0-alpha.0",
|
|
4
|
+
"description": "i18n express framework using Transifex Native",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"transifex",
|
|
7
7
|
"i18n",
|
|
8
8
|
"l10n",
|
|
9
|
-
"localization"
|
|
9
|
+
"localization",
|
|
10
|
+
"internationalization",
|
|
11
|
+
"globalization",
|
|
12
|
+
"translation",
|
|
13
|
+
"express"
|
|
10
14
|
],
|
|
11
15
|
"author": "Transifex",
|
|
12
16
|
"homepage": "https://github.com/transifex/transifex-javascript/tree/master/packages/express",
|
|
@@ -26,19 +30,19 @@
|
|
|
26
30
|
"url": "https://github.com/transifex/transifex-javascript/issues"
|
|
27
31
|
},
|
|
28
32
|
"engines": {
|
|
29
|
-
"node": ">=
|
|
33
|
+
"node": ">=14.0.0"
|
|
30
34
|
},
|
|
31
35
|
"devDependencies": {
|
|
32
|
-
"@transifex/native": "^
|
|
36
|
+
"@transifex/native": "^4.1.0-alpha.0",
|
|
33
37
|
"eslint": "^8.10.0",
|
|
34
38
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
35
39
|
"eslint-plugin-import": "^2.25.4",
|
|
36
|
-
"jest": "^
|
|
40
|
+
"jest": "^28.0.3"
|
|
37
41
|
},
|
|
38
42
|
"dependencies": {
|
|
39
43
|
"type-is": "^1.6.18"
|
|
40
44
|
},
|
|
41
45
|
"peerDependencies": {
|
|
42
|
-
"@transifex/native": "^
|
|
46
|
+
"@transifex/native": "^4.0.0"
|
|
43
47
|
}
|
|
44
48
|
}
|