-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 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
{
"name": "@medley/body-parser",
"version": "0.2.2",
"description": "Essential body parsers for Medley.",
"license": "MIT",
"author": "Nathan Woltman <[email protected]>",
"main": "body-parser.js",
"files": [
"body-parser.js",
"lib"
],
"engines": {
"node": ">=8"
},
"repository": "github:medleyjs/body-parser",
"homepage": "https://github.com/medleyjs/body-parser#readme",
"bugs": "https://github.com/medleyjs/body-parser/issues",
"keywords": [
"medley",
"body",
"parser",
"fast",
"json",
"buffer",
"text"
],
"nyc": {
"reporter": [
"html",
"text-summary"
],
"check-coverage": true,
"branches": 100,
"lines": 100,
"statements": 100
},
"dependencies": {
"compile-mime-match": "~0.1.0"
},
"devDependencies": {
"@medley/medley": "^0.13.0",
"@medley/self-request": "^0.5.0",
"@nwoltman/eslint-config": "^0.6.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"got": "^10.2.2",
"light-my-request": "^3.7.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0"
},
"scripts": {
"lint": "eslint *.js test/*.js",
"test-only": "nyc mocha",
"test": "eslint *.js test/*.js && nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
}
}