UNPKG

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