UNPKG

1.46 kBJSONView Raw
1{
2 "name": "koa-body",
3 "version": "2.4.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 ".gitignore",
32 ".npmignore",
33 ".travis.yml",
34 "LICENSE",
35 "Makefile",
36 "README.md",
37 "example.js",
38 "index.js",
39 "test.js"
40 ],
41 "dependencies": {
42 "co-body": "^5.1.1",
43 "formidable": "^1.1.1"
44 },
45 "devDependencies": {
46 "@types/koa": "^2.0.39",
47 "koa": "^2.0.0",
48 "koa-router": "^7.0.1",
49 "lodash": "^3.3.1",
50 "mocha": "*",
51 "multiline": "*",
52 "should": "*",
53 "supertest": "2.0.0"
54 },
55 "contributors": [
56 {
57 "name": "Daryl Lau",
58 "email": "dlau00@gmail.com",
59 "url": "https://github.com/dlau"
60 },
61 {
62 "name": "Charlike Mike Reagent",
63 "email": "mameto_100@mail.bg",
64 "url": "https://github.com/tunnckoCore"
65 }
66 ],
67 "license": "MIT"
68}