package.json
864 Bytes
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
{
"name": "unzip-response",
"version": "2.0.1",
"description": "Unzip a HTTP response if needed",
"license": "MIT",
"repository": "sindresorhus/unzip-response",
"maintainers": [
{
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
{
"name": "Vsevolod Strukchinsky",
"email": "floatdrop@gmail.com",
"url": "github.com/floatdrop"
}
],
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"http",
"unzip",
"zlib",
"gzip",
"deflate",
"incoming",
"message",
"response",
"stream"
],
"devDependencies": {
"ava": "*",
"get-stream": "^2.3.0",
"pify": "^2.3.0",
"rfpify": "^1.0.0",
"xo": "*"
},
"xo": {
"esnext": true
}
}