forked from anseki/htmlclean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 998 Bytes
/
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
{
"name": "htmlclean",
"version": "3.0.8",
"title": "htmlclean",
"description": "Simple and safety HTML/SVG cleaner to minify without changing its structure.",
"keywords": [
"html",
"svg",
"clean",
"whitespace",
"linebreak",
"comment",
"minify",
"compress",
"lightweight"
],
"main": "./lib/htmlclean.js",
"files": [
"lib/!(.eslintrc.json)",
"examples/!(.eslintrc.json)",
"bower.json"
],
"engines": {
"node": ">= 0.8.0"
},
"devDependencies": {
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0"
},
"scripts": {
"test": "mocha",
"cover": "istanbul cover node_modules/mocha/bin/_mocha"
},
"homepage": "https://github.com/anseki/htmlclean",
"repository": {
"type": "git",
"url": "git://github.com/anseki/htmlclean.git"
},
"bugs": "https://github.com/anseki/htmlclean/issues",
"license": "MIT",
"author": {
"name": "anseki",
"url": "https://github.com/anseki"
}
}