source: node_modules/raw-body/package.json@ 65b6638

main
Last change on this file since 65b6638 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.3 KB
Line 
1{
2 "name": "raw-body",
3 "description": "Get and validate the raw body of a readable stream.",
4 "version": "2.5.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.2",
14 "http-errors": "2.0.0",
15 "iconv-lite": "0.4.24",
16 "unpipe": "1.0.0"
17 },
18 "devDependencies": {
19 "bluebird": "3.7.2",
20 "eslint": "7.32.0",
21 "eslint-config-standard": "14.1.1",
22 "eslint-plugin-import": "2.25.4",
23 "eslint-plugin-markdown": "2.2.1",
24 "eslint-plugin-node": "11.1.0",
25 "eslint-plugin-promise": "5.2.0",
26 "eslint-plugin-standard": "4.1.0",
27 "mocha": "9.2.1",
28 "nyc": "15.1.0",
29 "readable-stream": "2.3.7",
30 "safe-buffer": "5.2.1"
31 },
32 "engines": {
33 "node": ">= 0.8"
34 },
35 "files": [
36 "HISTORY.md",
37 "LICENSE",
38 "README.md",
39 "SECURITY.md",
40 "index.d.ts",
41 "index.js"
42 ],
43 "scripts": {
44 "lint": "eslint .",
45 "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/",
46 "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
47 "test-cov": "nyc --reporter=html --reporter=text npm test"
48 }
49}
Note: See TracBrowser for help on using the repository browser.