-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 887 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
{
"name": "ensure-gunzip",
"version": "0.0.1",
"description": "Unzips gzipped streams to ensure that the content being read is always uncompressed",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha"
},
"author": "Kiril Vatev <vatev.1@gmail.com>",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.3.3",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"node-stream": "0.0.6"
},
"dependencies": {
"is-gzip-stream": "^0.2.1",
"through2": "^2.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catdad/ensure-gunzip.git"
},
"bugs": {
"url": "https://github.com/catdad/ensure-gunzip/issues"
},
"homepage": "https://github.com/catdad/ensure-gunzip#readme"
}