package.json
 1  {
 2    "name": "raw-body",
 3    "description": "Get and validate the raw body of a readable stream.",
 4    "version": "2.4.1",
 5    "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
 6    "contributors": [
 7      "Douglas Christopher Wilson <doug@somethingdoug.com>",
 8      "Raynos <raynos2@gmail.com>"
 9    ],
10    "license": "MIT",
11    "repository": "stream-utils/raw-body",
12    "dependencies": {
13      "bytes": "3.1.0",
14      "http-errors": "1.7.3",
15      "iconv-lite": "0.4.24",
16      "unpipe": "1.0.0"
17    },
18    "devDependencies": {
19      "bluebird": "3.5.5",
20      "eslint": "6.0.1",
21      "eslint-config-standard": "12.0.0",
22      "eslint-plugin-import": "2.18.0",
23      "eslint-plugin-markdown": "1.0.0",
24      "eslint-plugin-node": "9.1.0",
25      "eslint-plugin-promise": "4.2.1",
26      "eslint-plugin-standard": "4.0.0",
27      "istanbul": "0.4.5",
28      "mocha": "6.1.4",
29      "readable-stream": "2.3.6",
30      "safe-buffer": "5.1.2"
31    },
32    "engines": {
33      "node": ">= 0.8"
34    },
35    "files": [
36      "HISTORY.md",
37      "LICENSE",
38      "README.md",
39      "index.d.ts",
40      "index.js"
41    ],
42    "scripts": {
43      "lint": "eslint --plugin markdown --ext js,md .",
44      "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/",
45      "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --trace-deprecation --reporter dot --check-leaks test/",
46      "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --trace-deprecation --reporter spec --check-leaks test/"
47    }
48  }