-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
62 lines (62 loc) · 1.41 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
{
"name": "gulp-html-i18n",
"version": "0.16.0",
"description": "Html i18n",
"keywords": [
"html",
"i18n",
"gulpplugin"
],
"homepage": "https://github.com/webyom/gulp-html-i18n",
"author": {
"name": "Gary Wang",
"email": "[email protected]",
"url": "http://webyom.org"
},
"repository": {
"type": "git",
"url": "https://github.com/webyom/gulp-html-i18n.git"
},
"bugs": {
"url": "https://github.com/webyom/gulp-html-i18n/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/webyom/gulp-html-i18n/blob/master/LICENSE-MIT"
}
],
"main": "lib/index.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "nyc mocha --require coffeescript/register \"test/**/*.coffee\"",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"build": "gulp"
},
"dependencies": {
"async": "^3.1.0",
"chalk": "^3.0.0",
"extend": "^3.0.0",
"fancy-log": "^1.3.2",
"mustache": "^3.1.0",
"plugin-error": "^1.0.0",
"q": "^1.0.1",
"replace-ext": "^1.0.0",
"through2": "^3.0.1",
"vinyl": "^2.1.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.0.0",
"coffee-script": "^1.7.1",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-coffee": "^3.0.3",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"sinon": "^7.5.0"
}
}