forked from koajs/koa-body
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "koa-body",
"version": "0.3.0",
"description": "A koa body parser middleware. Support multipart, urlencoded and json request bodies.",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha --harmony-generators",
"examples-multer": "node --harmony examples/multer.js",
"examples-koa-router": "node --harmony examples/koa-router.js"
},
"author": {
"name": "Daryl Lau",
"email": "[email protected]",
"url": "https://github.com/dlau"
},
"repository": {
"type": "git",
"url": "git://github.com/dlau/koa-body.git"
},
"keywords": [
"koa",
"urlencoded",
"multipart",
"json",
"body",
"parser",
"form"
],
"files": [
".gitignore",
".npmignore",
".travis.yml",
"LICENSE",
"Makefile",
"README.md",
"example.js",
"index.js",
"test.js"
],
"dependencies": {
"co-body": "*",
"extend": "1.3.0",
"formidable": "1.0.15"
},
"devDependencies": {
"koa": "*",
"koa-router": "*",
"koa-resource-router": "*",
"multiline": "*",
"mocha": "*",
"should": "*",
"supertest": "*"
},
"contributors": [
{
"name": "Daryl Lau",
"email": "[email protected]",
"url": "https://github.com/dlau"
},
{
"name": "Charlike Mike Reagent",
"email": "[email protected]",
"url": "https://github.com/tunnckoCore"
}
],
"license": "MIT"
}