-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "i18n-for-browser",
"version": "3.0.0",
"description": "Modern translation module for web.",
"author": "dangreen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/i18n-for-browser"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/i18n-for-browser/issues"
},
"main": "lib/index.js",
"module": "lib/index.es.js",
"raw": "lib/index.babel.js",
"umd": "lib/umd.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "trigen-scripts lint",
"jest": "trigen-scripts jest",
"checkSize": "trigen-scripts checkSize",
"test": "trigen-scripts test",
"build:docs": "trigen-scripts build:docs",
"start": "trigen-scripts start",
"build": "trigen-scripts build",
"cleanPublish": "trigen-scripts cleanPublish",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"template",
"i18n",
"l10n",
"browser",
"client",
"client-side"
],
"dependencies": {
"@babel/runtime-corejs3": "^7.9.6",
"@types/js-cookie": "^2.2.2",
"@types/mustache": "^4.0.1",
"@types/node": "^14.11.2",
"@types/sprintf-js": "^1.1.2",
"assert": "^2.0.0",
"cldr-core": "^36.0.0",
"js-cookie": "^2.2.0",
"make-plural-compiler": "^5.0.0",
"math-interval-parser": "^2.0.1",
"messageformat": "^2.2.1",
"mustache": "^4.0.1",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^9.0.0",
"@size-limit/preset-small-lib": "^4.4.0",
"@trigen/scripts": "^6.0.0",
"@trigen/scripts-plugin-babel": "^6.1.1",
"@trigen/scripts-plugin-eslint": "^6.0.0",
"@trigen/scripts-plugin-jest": "^6.1.1",
"@trigen/scripts-plugin-rollup": "^6.0.0",
"@trigen/scripts-plugin-size-limit": "^6.0.0",
"@trigen/scripts-plugin-typescript": "^6.0.0",
"@trigen/scripts-preset-lib": "^6.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-tslint": "^0.2.2",
"rollup-plugin-typescript2": "^0.27.3"
},
"files": [
"lib"
]
}