forked from stream-utils/raw-body
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 KB
/
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
{
"name": "raw-body",
"description": "Get and validate the raw body of a readable stream.",
"version": "2.1.4",
"author": "Jonathan Ong <[email protected]> (http://jongleberry.com)",
"contributors": [
"Douglas Christopher Wilson <[email protected]>",
"Raynos <[email protected]>"
],
"license": "MIT",
"repository": "stream-utils/raw-body",
"dependencies": {
"bytes": "2.1.0",
"iconv-lite": "0.4.12",
"unpipe": "1.0.0"
},
"devDependencies": {
"bluebird": "2.10.1",
"istanbul": "0.3.21",
"mocha": "2.2.5",
"readable-stream": "2.0.2",
"through2": "2.0.0"
},
"engines": {
"node": ">= 0.8"
},
"files": [
"HISTORY.md",
"LICENSE",
"README.md",
"index.js"
],
"scripts": {
"test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --trace-deprecation --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --trace-deprecation --reporter spec --check-leaks test/"
}
}