forked from projectfluent/fluent.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.56 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.56 KB
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
{
"name": "@fluent/react",
"description": "Fluent bindings for React",
"version": "0.12.0",
"homepage": "https://projectfluent.org",
"author": "Mozilla <l10n-drivers@mozilla.org>",
"license": "Apache-2.0",
"contributors": [
{
"name": "Zibi Braniecki",
"email": "zbraniecki@mozilla.com"
},
{
"name": "Staś Małolepszy",
"email": "stas@mozilla.com"
}
],
"type": "module",
"main": "./index.cjs",
"exports": {
"import": "./esm/index.js",
"require": "./index.cjs"
},
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/projectfluent/fluent.js.git"
},
"keywords": [
"localization",
"l10n",
"internationalization",
"i18n",
"ftl",
"plural",
"gender",
"locale",
"language",
"formatting",
"translate",
"translation",
"format",
"parser",
"react",
"reactjs"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"cached-iterable": "^0.2.1",
"@fluent/sequence": "0.5.0",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"@fluent/bundle": ">=0.14.0 <0.16.0",
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "7.0.0",
"@fluent/bundle": "^0.15.0",
"@types/react": "^16.9.22",
"@types/react-dom": "^16.9.5",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-test-renderer": "^16.8.6"
}
}