-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
{
"name": "gulp-translate",
"version": "1.5.9",
"description": "Gulp plugin that localizes HTML templates and JSON files by extracting and injecting localizable content.",
"keywords": [
"gulp",
"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/gulp-translate",
"bugs": {
"url": "https://github.com/thomas-darling/gulp-translate/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thomas-darling/gulp-translate.git"
},
"dependencies": {
"chalk": "^4.1.2",
"cheerio": "0.22.00",
"csv-parse": "^4.16.2",
"csv-stringify": "^5.6.4",
"mkdirp": "^1.0.4",
"plugin-error": "^1.0.1",
"through2": "^4.0.2",
"tslib": "^2.3.1",
"vinyl": "^2.2.1"
},
"devDependencies": {
"@types/cheerio": "0.22.22",
"@types/mkdirp": "^1.0.2",
"@types/node": "16.11.10",
"@types/through2": "^2.0.36",
"@types/vinyl": "^2.0.6",
"del": "^6.0.0",
"gulp": "4.0.2",
"gulp-rename": "^2.0.0",
"tslint": "^6.1.3",
"typescript": "^4.5.2"
},
"scripts": {
"prepare": "tsc",
"test": "gulp --cwd example",
"lint": "tslint --project 'tsconfig.json'"
},
"types": "lib/index.d.ts",
"main": "lib/index.js"
}