forked from projectfluent/fluent.js
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.2 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
{
"name": "@fluent/dom",
"version": "0.8.1",
"description": "Fluent bindings for DOM",
"repository": {
"type": "git",
"url": "https://github.com/projectfluent/fluent.js.git"
},
"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",
"keywords": [
"localization",
"l10n",
"internationalization",
"i18n",
"locale",
"language",
"formatting",
"translate",
"translation",
"format"
],
"scripts": {
"build": "tsc",
"postbuild": "rollup -c ../rollup.config.mjs --globals cached-iterable:CachedIterable",
"docs": "typedoc --options ../typedoc.config.cjs src/index.js",
"test": "c8 mocha -ui tdd --require ./test/index.js 'test/*_test.js'"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=7.0.0"
},
"devDependencies": {
"@fluent/bundle": "file:../fluent-bundle",
"jsdom": "^17.0.0"
},
"dependencies": {
"cached-iterable": "^0.3"
}
}