-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.19 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.19 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
{
"name": "gulp-localize-html",
"version": "1.0.0",
"description": "Translate HTML with configurable callbacks and HTML parsing",
"main": "index.js",
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/alethea/gulp-localize-html.git"
},
"homepage": "https://github.com/alethea/gulp-localize-html",
"keywords": [
"gulp",
"gulpplugin",
"html",
"i18n",
"l10n",
"m17n",
"internationalization",
"internationalize",
"translation",
"translate",
"localization",
"localize",
"multilingualization"
],
"author": "Alethea Rose <alethea@alethearose.com>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/alethea/gulp-html-i18n/issues"
},
"dependencies": {
"gulp-util": "^3.0.7",
"htmlparser2": "^3.9.1",
"through2": "^2.0.1",
"vinyl-fs": "^2.4.3",
"yaml-js": "^0.1.3"
},
"devDependencies": {
"chai": "^3.5.0",
"cz-conventional-changelog": "^1.1.6",
"jshint": "^2.9.3",
"mocha": "^2.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}