UNPKG

1.23 kBJSONView Raw
1{
2 "name": "body-parser",
3 "description": "Node.js body parsing middleware",
4 "version": "1.14.2",
5 "contributors": [
6 "Douglas Christopher Wilson <doug@somethingdoug.com>",
7 "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
8 ],
9 "license": "MIT",
10 "repository": "expressjs/body-parser",
11 "dependencies": {
12 "bytes": "2.2.0",
13 "content-type": "~1.0.1",
14 "debug": "~2.2.0",
15 "depd": "~1.1.0",
16 "http-errors": "~1.3.1",
17 "iconv-lite": "0.4.13",
18 "on-finished": "~2.3.0",
19 "qs": "5.2.0",
20 "raw-body": "~2.1.5",
21 "type-is": "~1.6.10"
22 },
23 "devDependencies": {
24 "istanbul": "0.4.1",
25 "methods": "~1.1.1",
26 "mocha": "2.3.4",
27 "supertest": "1.1.0"
28 },
29 "files": [
30 "lib/",
31 "LICENSE",
32 "HISTORY.md",
33 "index.js"
34 ],
35 "engines": {
36 "node": ">= 0.8"
37 },
38 "scripts": {
39 "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/",
40 "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/",
41 "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/"
42 }
43}