-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
85 lines (85 loc) · 1.59 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
83
84
85
{
"name": "koa-html-minifier",
"description": "minify HTML responses like some crazy guy",
"version": "3.0.0",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/koajs/html-minifier"
},
"keywords": [
"koa",
"html",
"css",
"htmlmin",
"min",
"compress",
"minification",
"minifier",
"minify",
"uglifier",
"uglify",
"terser"
],
"scripts": {
"lint": "xo",
"pretest": "npm run lint",
"test": "mocha --exit",
"test-ci": "nyc npm run test"
},
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
"url": "http://jongleberry.com"
},
"contributors": [
{
"name": "Imed Jaberi",
"email": "imed_jebari@hotmail.fr",
"url": "https://www.3imed-jaberi.com"
},
{
"name": "João Carmona",
"email": "jpc@mm.st"
}
],
"license": "MIT",
"dependencies": {
"html-minifier-terser": "^6.0.2"
},
"devDependencies": {
"eslint-config-xo-lass": "^2.0.1",
"koa": "^2.13.3",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"supertest": "^6.1.6",
"xo": "^0.51.0"
},
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
],
"ignores": [
"test"
],
"rules": {
"func-names": "off"
}
},
"engines": {
"node": ">= 12"
},
"homepage": "https://github.com/koajs/html-minifier",
"bugs": {
"url": "https://github.com/koajs/html-minifier/issues"
}
}