urltomarkdown/node_modules/raw-body/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2022-01-08 17:05:05 +00:00
{
2022-01-08 17:17:05 +00:00
"name": "raw-body",
"description": "Get and validate the raw body of a readable stream.",
2022-12-21 22:28:59 +00:00
"version": "2.5.1",
2022-01-08 17:17:05 +00:00
"author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
2022-01-08 17:05:05 +00:00
"contributors": [
2022-01-08 17:17:05 +00:00
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Raynos <raynos2@gmail.com>"
2022-01-08 17:05:05 +00:00
],
2022-01-08 17:17:05 +00:00
"license": "MIT",
"repository": "stream-utils/raw-body",
2022-01-08 17:05:05 +00:00
"dependencies": {
2022-12-21 22:28:59 +00:00
"bytes": "3.1.2",
"http-errors": "2.0.0",
2022-01-08 17:05:05 +00:00
"iconv-lite": "0.4.24",
"unpipe": "1.0.0"
},
"devDependencies": {
2022-01-08 17:17:05 +00:00
"bluebird": "3.7.2",
"eslint": "7.32.0",
"eslint-config-standard": "14.1.1",
2022-12-21 22:28:59 +00:00
"eslint-plugin-import": "2.25.4",
2022-01-08 17:17:05 +00:00
"eslint-plugin-markdown": "2.2.1",
"eslint-plugin-node": "11.1.0",
2022-12-21 22:28:59 +00:00
"eslint-plugin-promise": "5.2.0",
2022-01-08 17:17:05 +00:00
"eslint-plugin-standard": "4.1.0",
2022-12-21 22:28:59 +00:00
"mocha": "9.2.1",
2022-01-08 17:17:05 +00:00
"nyc": "15.1.0",
"readable-stream": "2.3.7",
"safe-buffer": "5.2.1"
2022-01-08 17:05:05 +00:00
},
"engines": {
"node": ">= 0.8"
},
"files": [
"HISTORY.md",
"LICENSE",
"README.md",
2022-12-21 22:28:59 +00:00
"SECURITY.md",
2022-01-08 17:05:05 +00:00
"index.d.ts",
"index.js"
],
"scripts": {
2022-01-08 17:17:05 +00:00
"lint": "eslint .",
2022-01-08 17:05:05 +00:00
"test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/",
2022-12-21 22:28:59 +00:00
"test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
2022-01-08 17:17:05 +00:00
"test-cov": "nyc --reporter=html --reporter=text npm test"
}
2022-01-08 17:05:05 +00:00
}