UNPKG

1.32 kBJSONView Raw
1{
2 "name": "koa-body",
3 "version": "4.0.1",
4 "description": "A Koa body parser middleware. Supports multipart, urlencoded and JSON request bodies.",
5 "main": "index.js",
6 "types": "./index.d.ts",
7 "scripts": {
8 "test": "mocha",
9 "examples-multer": "node examples/multer.js",
10 "examples-koa-router": "node examples/koa-router.js"
11 },
12 "author": {
13 "name": "Daryl Lau",
14 "email": "dlau00@gmail.com",
15 "url": "https://github.com/dlau"
16 },
17 "repository": {
18 "type": "git",
19 "url": "git://github.com/dlau/koa-body.git"
20 },
21 "keywords": [
22 "koa",
23 "urlencoded",
24 "multipart",
25 "json",
26 "body",
27 "parser",
28 "form"
29 ],
30 "files": [
31 "LICENSE",
32 "README.md",
33 "index.js",
34 "index.d.ts",
35 "package.json"
36 ],
37 "dependencies": {
38 "co-body": "^5.1.1",
39 "formidable": "^1.1.1"
40 },
41 "devDependencies": {
42 "@types/koa": "^2.0.39",
43 "koa": "^2.0.0",
44 "koa-router": "^7.0.1",
45 "mocha": "5.2.0",
46 "should": "13.2.1",
47 "supertest": "3.1.0"
48 },
49 "contributors": [
50 {
51 "name": "Daryl Lau",
52 "email": "dlau00@gmail.com",
53 "url": "https://github.com/dlau"
54 },
55 {
56 "name": "Charlike Mike Reagent",
57 "email": "mameto_100@mail.bg",
58 "url": "https://github.com/tunnckoCore"
59 }
60 ],
61 "license": "MIT"
62}