-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
42 lines (42 loc) · 979 Bytes
/
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
{
"name": "gunzip-maybe",
"description": "Transform stream that gunzips its input if it is gzipped and just echoes it if not",
"version": "1.4.2",
"repository": {
"type": "git",
"url": "https://github.com/mafintosh/gunzip-maybe"
},
"license": "MIT",
"dependencies": {
"browserify-zlib": "^0.1.4",
"is-deflate": "^1.0.0",
"is-gzip": "^1.0.0",
"peek-stream": "^1.1.0",
"pumpify": "^1.3.3",
"through2": "^2.0.3"
},
"devDependencies": {
"concat-stream": "^1.4.5",
"standard": "^9.0.0",
"tape": "^4.6.3"
},
"scripts": {
"test": "standard && tape test.js"
},
"bin": {
"gunzip-maybe": "./bin.js"
},
"browser": {
"zlib": "browserify-zlib"
},
"bugs": {
"url": "https://github.com/mafintosh/gunzip-maybe/issues"
},
"homepage": "https://github.com/mafintosh/gunzip-maybe",
"main": "index.js",
"author": "Mathias Buus (@mafintosh)",
"coordinates": [
55.6666904,
12.5797771
]
}