-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.41 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.41 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
{
"name": "@fluent/web",
"version": "0.2.1",
"description": "Drop-in localization framework for HTML documents",
"repository": {
"type": "git",
"url": "https://github.com/projectfluent/fluent-web.git"
},
"author": "Mozilla <l10n-drivers@mozilla.org>",
"homepage": "http://projectfluent.org",
"license": "Apache-2.0",
"contributors": [
{
"name": "Zibi Braniecki",
"email": "zbraniecki@mozilla.com"
},
{
"name": "Staś Małolepszy",
"email": "stas@mozilla.com"
}
],
"directories": {
"lib": "./src"
},
"files": [
"src/index.js",
"fluent-web.js"
],
"main": "./fluent-web.js",
"module": "./src/index.js",
"keywords": [
"localization",
"l10n",
"internationalization",
"i18n",
"locale",
"language",
"formatting",
"translate",
"translation",
"format"
],
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"start": "make -f makefile build & npx http-server ./"
},
"dependencies": {
"cached-iterable": "^0.3.0",
"@fluent/bundle": "^0.14.0",
"@fluent/dom": "^0.6.0",
"@fluent/langneg": "^0.3.0"
},
"devDependencies": {
"eslint": "^6.2.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^5.3.0",
"rollup": "^1.20.0",
"rollup-plugin-babel-minify": "^9.0.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}