-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
54 lines (54 loc) · 1.14 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
{
"name": "@fluent/bundle",
"description": "Localization library for expressive translations.",
"version": "0.18.0",
"homepage": "https://projectfluent.org",
"author": "Mozilla <[email protected]>",
"license": "Apache-2.0",
"contributors": [
{
"name": "Zibi Braniecki",
"email": "[email protected]"
},
{
"name": "Staś Małolepszy",
"email": "[email protected]"
}
],
"main": "./index.js",
"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"
],
"scripts": {
"build": "tsc",
"postbuild": "rollup -c ../rollup.config.mjs",
"docs": "typedoc --options ../typedoc.config.cjs",
"test": "mocha 'test/*_test.js'"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
},
"devDependencies": {
"@fluent/dedent": "^0.5.0"
}
}