forked from fastify/fastify-compress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.75 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.75 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
{
"name": "fastify-compress",
"version": "2.0.0",
"description": "Fastify compression utils",
"main": "index.js",
"dependencies": {
"encoding-negotiator": "^2.0.0",
"fastify-plugin": "^1.0.0",
"into-stream": "4.0.0",
"is-deflate": "^1.0.0",
"is-gzip": "^1.0.0",
"is-stream": "^2.0.0",
"is-zip": "^1.0.0",
"mime-db": "^1.33.0",
"minipass": "^2.9.0",
"peek-stream": "^1.1.0",
"pump": "^3.0.0",
"pumpify": "^2.0.0",
"string-to-stream": "^3.0.0",
"unzipper": "^0.10.1"
},
"devDependencies": {
"@types/node": "^12.12.12",
"@typescript-eslint/parser": "^2.0.0",
"eslint-plugin-typescript": "^0.14.0",
"fastify": "^2.11.0",
"iltorb": "2.4.3",
"jsonstream": "^1.0.3",
"pre-commit": "^1.2.2",
"standard": "^14.0.2",
"typescript": "^3.4.5",
"tap": "^12.6.6"
},
"scripts": {
"unit": "tap test/*.js",
"test": "standard && npm run unit && npm run typescript",
"lint:typescript": "standard --fix --parser @typescript-eslint/parser --plugin typescript test/types/*.ts",
"typescript": "tsc --project ./test/types/tsconfig.json",
"coverage": "npm run unit -- --cov",
"coverage-report": "npm run coverage && tap --coverage-report=lcov"
},
"keywords": [
"fastify",
"compression",
"deflate",
"gzip",
"brotli"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-compress/issues"
},
"homepage": "https://github.com/fastify/fastify-compress#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-compress.git"
},
"greenkeeper": {
"ignore": [
"into-stream",
"iltorb",
"tap"
]
}
}