-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.84 KB
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
{
"name": "koa-compress",
"description": "Compress middleware for koa",
"version": "5.2.2",
"type": "commonjs",
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"contributors": [
{
"name": "Imed Jaberi",
"email": "imed-jaberi@outlook.com",
"url": "https://www.3imed-jaberi.com/"
},
{
"name": "Eugene Lazutkin",
"email": "eugene.lazutkin@gmail.com",
"url": "https://www.lazutkin.com/"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/koajs/compress.git"
},
"dependencies": {
"bytes": "^3.1.2",
"compressible": "^2.0.18",
"http-errors": "^2.0.1",
"koa-is-json": "^1.0.0",
"negotiator": "^1.0.0"
},
"devDependencies": {
"@types/koa": "^3.0.3",
"@types/node": "^26.1.2",
"c8": "^12.0.0",
"jest": "^30.4.2",
"koa": "^3.2.1",
"snazzy": "^9.0.0",
"standard": "^17.1.2",
"supertest": "^7.2.2",
"typescript": "^7.0.2"
},
"scripts": {
"test": "jest",
"test:coverage": "c8 --reporter=lcov --reporter=text-summary jest --coverage",
"lint": "standard",
"lint:fix": "standard --fix",
"lint:pretty": "standard | snazzy",
"ts-check": "tsc --noEmit",
"authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS"
},
"files": [
"lib",
"LICENSE",
"HISTORY.md"
],
"main": "lib",
"types": "lib/index.d.ts",
"engines": {
"node": ">= 12"
},
"standard": {
"globals": [
"afterAll",
"beforeAll",
"afterEach",
"jasmine",
"describe",
"test",
"jest",
"expect",
"it"
]
},
"homepage": "https://github.com/koajs/compress",
"bugs": {
"url": "https://github.com/koajs/compress/issues"
}
}