-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
82 lines (82 loc) · 1.87 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
78
79
80
81
82
{
"name": "gulp-htmlmin",
"description": "gulp plugin to minify HTML.",
"version": "5.0.1",
"homepage": "https://github.com/jonschlinkert/gulp-htmlmin",
"authors": [
{
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert",
"twitter": "jonschlinkert"
},
{
"name": "Shinnosuke Watanabe",
"url": "https://github.com/shinnn",
"twitter": "shinnn_tw"
}
],
"contributors": [
"Brian Woodward (https://twitter.com/doowb)",
"Chris Watson (https://github.com/cwonrails)",
"Igor Adamenko (http://igoradamenko.com)",
"Joel Arvidsson (http://twitter.com/trastknast)",
"John-David Dalton (http://twitter.com/jdalton)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Jose Chirivella (https://www.jchirivella.com)",
"Nico Schlömer (https://github.com/nschloe)",
"Shinnosuke Watanabe (https://shinnn.github.io)",
"Steve Lacy (http://slacy.me)",
"Tom Byrer (https://github.com/tomByrer)",
"(https://github.com/TheDancingCode)"
],
"repository": "jonschlinkert/gulp-htmlmin",
"bugs": {
"url": "https://github.com/jonschlinkert/gulp-htmlmin/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">= 6.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"html-minifier": "^3.5.20",
"plugin-error": "^1.0.1",
"through2": "^2.0.3"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-format-md": "^1.0.0",
"mocha": "^5.2.0",
"vinyl": "^2.2.0"
},
"keywords": [
"format",
"gulp",
"gulpplugin",
"htm",
"html",
"htmlmin",
"minification",
"minifier",
"minify"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
}
}
}