forked from koajs/compress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.34 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.34 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
{
"name": "koa-compress",
"description": "Compress middleware for koa",
"version": "5.1.1",
"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/"
}
],
"license": "MIT",
"repository": "koajs/compress",
"dependencies": {
"bytes": "^3.1.2",
"compressible": "^2.0.18",
"http-errors": "^2.0.0",
"koa-is-json": "^1.0.0"
},
"devDependencies": {
"c8": "^10.1.3",
"jest": "^30.0.5",
"koa": "^3.0.1",
"snazzy": "^9.0.0",
"standard": "^17.1.2",
"supertest": "^7.1.4"
},
"scripts": {
"test": "jest",
"test:coverage": "c8 --reporter=lcov --reporter=text-summary jest --coverage",
"lint": "standard",
"lint:fix": "standard --fix",
"lint:pretty": "standard | snazzy",
"authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS"
},
"files": [
"lib",
"LICENSE",
"HISTORY.md"
],
"main": "lib",
"engines": {
"node": ">= 12"
},
"standard": {
"globals": [
"afterAll",
"beforeAll",
"afterEach",
"jasmine",
"describe",
"test",
"jest",
"expect",
"it"
]
}
}