forked from cojs/co-body
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 818 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
{
"name": "co-body",
"version": "6.0.0",
"repository": "cojs/co-body",
"description": "request body parsing for co",
"keywords": [
"request",
"parse",
"parser",
"json",
"co",
"generators",
"urlencoded"
],
"dependencies": {
"inflation": "^2.0.0",
"qs": "^6.5.2",
"raw-body": "^2.3.3",
"type-is": "^1.6.16"
},
"devDependencies": {
"autod": "^3.0.1",
"egg-bin": "^4.7.0",
"eslint": "^4.19.1",
"eslint-config-egg": "^7.0.0",
"koa": "^1.6.0",
"safe-qs": "^6.0.1",
"should": "^11.2.0",
"supertest": "^3.1.0"
},
"license": "MIT",
"scripts": {
"lint": "eslint .",
"autod": "autod",
"test": "egg-bin test -r should",
"cov": "eslint . && egg-bin cov -r should"
},
"files": [
"index.js",
"lib/"
]
}