forked from l20n/l20n.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
55
56
57
{
"name": "l20n",
"description": "A localization library for HTML documents",
"version": "5.0.0",
"homepage": "http://l20n.org",
"author": "Mozilla <[email protected]>",
"license": "Apache-2.0",
"contributors": [
{
"name": "Zibi Braniecki",
"email": "[email protected]"
},
{
"name": "Staś Małolepszy",
"email": "[email protected]"
}
],
"scripts": {
"test": "make src/testing && make test"
},
"directories": {
"lib": "./src"
},
"main": "./dist/web/l20n.js",
"repository": {
"type": "git",
"url": "https://github.com/l20n/l20n.js.git"
},
"keywords": [
"localization",
"l10n"
],
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.7",
"babel-preset-latest": "^6.24.1",
"chai": "^3.5.0",
"documentation": "^4.0.0-beta10",
"eslint": "^3.9.1",
"karma": "^1.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"mocha": "^3.0.2",
"rollup": "0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^3.0.0",
"uglify-js": "^2.8.22"
},
"dependencies": {
"fluent": "~0.3.1",
"fluent-intl-polyfill": "~0.1.0",
"fluent-langneg": "~0.0.2"
}
}