source: frontend/node_modules/raw-body/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • 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.3",
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.1",
15 "iconv-lite": "~0.4.24",
16 "unpipe": "~1.0.0"
17 },
18 "devDependencies": {
19 "bluebird": "3.7.2",
20 "eslint": "8.34.0",
21 "eslint-config-standard": "15.0.1",
22 "eslint-plugin-import": "2.27.5",
23 "eslint-plugin-markdown": "3.0.0",
24 "eslint-plugin-node": "11.1.0",
25 "eslint-plugin-promise": "6.1.1",
26 "eslint-plugin-standard": "4.1.0",
27 "mocha": "10.2.0",
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 "LICENSE",
37 "README.md",
38 "index.d.ts",
39 "index.js"
40 ],
41 "scripts": {
42 "lint": "eslint .",
43 "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/",
44 "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
45 "test-cov": "nyc --reporter=html --reporter=text npm test"
46 }
47}
Note: See TracBrowser for help on using the repository browser.