-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.33 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": "translation-loader",
"version": "1.1.2",
"description": "Webpack loader that localizes HTML templates and JSON files by injecting translated content.",
"keywords": [
"webpack",
"translate",
"translation",
"localize",
"internationalization",
"i18n",
"localization",
"l10n",
"globalization",
"g11n",
"template",
"html",
"aurelia",
"angular"
],
"license": "MIT",
"author": {
"name": "Thomas Darling"
},
"homepage": "https://github.com/thomas-darling/translation-loader",
"bugs": {
"url": "https://github.com/thomas-darling/translation-loader/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thomas-darling/translation-loader.git"
},
"dependencies": {
"@types/loader-utils": "^2.0.1",
"@types/minimatch": "^3.0.3",
"chalk": "^4.1.0",
"gulp-translate": "^1.5.9",
"loader-utils": "^2.0.0",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@types/node": "^14.0.27",
"globs": "^0.1.4",
"html-loader": "^1.1.0",
"json-loader": "^0.5.7",
"tslint": "^6.1.3",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"scripts": {
"prepare": "tsc",
"lint": "tslint --project 'tsconfig.json'"
},
"types": "lib/index.d.ts",
"main": "lib/index.js"
}