package.json 1.44 KB
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
2
3
{
  "name": "body-parser",
  "description": "Node.js body parsing middleware",
4
  "version": "1.20.0",
Rosanny Sihombing's avatar
Rosanny Sihombing committed
5
6
7
8
9
10
11
  "contributors": [
    "Douglas Christopher Wilson <doug@somethingdoug.com>",
    "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
  ],
  "license": "MIT",
  "repository": "expressjs/body-parser",
  "dependencies": {
12
    "bytes": "3.1.2",
Rosanny Sihombing's avatar
Rosanny Sihombing committed
13
14
    "content-type": "~1.0.4",
    "debug": "2.6.9",
15
16
17
    "depd": "2.0.0",
    "destroy": "1.2.0",
    "http-errors": "2.0.0",
Rosanny Sihombing's avatar
Rosanny Sihombing committed
18
    "iconv-lite": "0.4.24",
19
20
21
22
23
    "on-finished": "2.4.1",
    "qs": "6.10.3",
    "raw-body": "2.5.1",
    "type-is": "~1.6.18",
    "unpipe": "1.0.0"
Rosanny Sihombing's avatar
Rosanny Sihombing committed
24
25
  },
  "devDependencies": {
26
27
28
29
30
31
32
    "eslint": "7.32.0",
    "eslint-config-standard": "14.1.1",
    "eslint-plugin-import": "2.25.4",
    "eslint-plugin-markdown": "2.2.1",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-promise": "5.2.0",
    "eslint-plugin-standard": "4.1.0",
Rosanny Sihombing's avatar
Rosanny Sihombing committed
33
    "methods": "1.1.2",
34
35
36
37
    "mocha": "9.2.2",
    "nyc": "15.1.0",
    "safe-buffer": "5.2.1",
    "supertest": "6.2.2"
Rosanny Sihombing's avatar
Rosanny Sihombing committed
38
39
40
41
42
  },
  "files": [
    "lib/",
    "LICENSE",
    "HISTORY.md",
43
    "SECURITY.md",
Rosanny Sihombing's avatar
Rosanny Sihombing committed
44
45
46
    "index.js"
  ],
  "engines": {
47
48
    "node": ">= 0.8",
    "npm": "1.2.8000 || >= 1.4.16"
Rosanny Sihombing's avatar
Rosanny Sihombing committed
49
50
  },
  "scripts": {
51
    "lint": "eslint .",
Rosanny Sihombing's avatar
Rosanny Sihombing committed
52
    "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/",
53
54
    "test-ci": "nyc --reporter=lcov --reporter=text npm test",
    "test-cov": "nyc --reporter=html --reporter=text npm test"
Rosanny Sihombing's avatar
Rosanny Sihombing committed
55
56
  }
}