UNPKG

1.39 kBJSONView Raw
1{
2 "name": "koa-body",
3 "version": "2.6.0",
4 "description": "A koa body parser middleware. Support multipart, urlencoded and json request bodies.",
5 "main": "index.js",
6 "types": "./index.d.ts",
7 "scripts": {
8 "test": "node_modules/.bin/mocha",
9 "examples-multer": "node --harmony examples/multer.js",
10 "examples-koa-router": "node --harmony 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 "lodash": "^3.3.1",
46 "mocha": "*",
47 "multiline": "*",
48 "should": "*",
49 "supertest": "2.0.0"
50 },
51 "contributors": [
52 {
53 "name": "Daryl Lau",
54 "email": "dlau00@gmail.com",
55 "url": "https://github.com/dlau"
56 },
57 {
58 "name": "Charlike Mike Reagent",
59 "email": "mameto_100@mail.bg",
60 "url": "https://github.com/tunnckoCore"
61 }
62 ],
63 "license": "MIT"
64}