forked from koajs/bodyparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 909 Bytes
/
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
{
"name": "koa-bodyparser",
"version": "4.2.1",
"description": "a body parser for koa",
"main": "index.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git://github.com/koajs/bodyparser.git"
},
"files": [
"index.js"
],
"keywords": [
"bodyParser",
"json",
"urlencoded",
"koa",
"body"
],
"author": "dead_horse <[email protected]> (http://deadhorse.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/koajs/body-parser/issues"
},
"homepage": "https://github.com/koajs/body-parser",
"devDependencies": {
"autod": "2.4.2",
"istanbul": "^0.4.5",
"koa": "^2.0.1",
"mocha": "^3.2.0",
"should": "^11.2.0",
"supertest": "^3.0.0"
},
"dependencies": {
"co-body": "^6.0.0",
"copy-to": "^2.0.1",
"formidable": "^1.1.1"
},
"engines": {
"node": ">=8.0.0"
}
}