forked from reshape/minify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "reshape-minify",
"description": "minifies html by removing extra whitespace and newlines",
"version": "1.1.0",
"author": "reshape",
"ava": {
"verbose": "true"
},
"bugs": "https://github.com/reshape/minify/issues",
"dependencies": {
"cssnano": "^3.7.4",
"indx": "^0.2.3",
"reshape-expressions": "^0.1.4",
"reshape-parser": "^0.2.1",
"reshape-plugin-util": "^0.2.1",
"svgo": "^0.7.0",
"uglify-js": "^3.0.26"
},
"devDependencies": {
"ava": "^0.21.0",
"coveralls": "^2.13.1",
"nyc": "^11.0.3",
"reshape": "^0.4.0",
"reshape-eval-code": "^0.3.3",
"snazzy": "^7.0.0",
"standard": "^10.0.0"
},
"engines": {
"node": ">= 6"
},
"homepage": "https://github.com/reshape/minify",
"keywords": [
"compress",
"html",
"minify",
"reshape-plugin"
],
"license": "MIT",
"main": "lib",
"repository": "reshape/minify",
"scripts": {
"coverage": "nyc ava && nyc report --reporter=html && open ./coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard | snazzy",
"test": "nyc ava"
}
}