forked from koajs/bodyparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.43 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
68
69
70
{
"name": "koa-bodyparser",
"version": "4.3.0",
"description": "a body parser for Koa",
"main": "index.js",
"scripts": {
"lint": "xo",
"lint:fix": "xo --fix",
"test": "mocha --require should test/*.spec.js --exit",
"coverage": "nyc npm run test --reporter=lcov",
"test-ci": "npm run lint && npm run coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/koajs/bodyparser.git"
},
"files": [
"index.js"
],
"keywords": [
"bodyParser",
"json",
"urlencoded",
"koa",
"body"
],
"author": {
"name": "dead_horse",
"email": "[email protected]",
"url": " http://deadhorse.me"
},
"license": "MIT",
"devDependencies": {
"eslint-config-xo-lass": "^1.0.3",
"husky": "^4.2.5",
"koa": "^2",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"should": "^13.2.3",
"supertest": "^4.0.2",
"xo": "0.25.4"
},
"dependencies": {
"co-body": "^6.0.0",
"copy-to": "^2.0.1"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
],
"rules": {
"node/no-deprecated-api": "off",
"no-unused-vars": "off",
"no-prototype-builtins": "off",
"prefer-rest-params": "off"
},
"ignores": [
"test/**"
]
},
"engines": {
"node": ">=8.0.0"
},
"bugs": {
"url": "https://github.com/koajs/body-parser/issues"
},
"homepage": "https://github.com/koajs/body-parser"
}