-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
{
"name": "express-busboy",
"description": "Busboy for express, mimics the old bodyParser",
"version": "10.1.0",
"author": "Dav Glass <[email protected]>",
"main": "index.js",
"scripts": {
"lint": "eslint --fix .",
"test": "jenkins-mocha tests/*.js",
"posttest": "nyc report"
},
"repository": {
"type": "git",
"url": "[email protected]:yahoo/express-busboy.git"
},
"keywords": [
"busboy",
"express",
"body-parser"
],
"bugs": {
"url": "https://github.com/yahoo/express-busboy/issues"
},
"homepage": "https://github.com/yahoo/express-busboy",
"dependencies": {
"body": "^5.1.0",
"connect-busboy": "^1.0.0",
"mkdirp": "^1.0.4",
"qs": "^6.10.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^8.12.0",
"express": "^4.16.4",
"jenkins-mocha": "^9.0.0",
"nyc": "^15.1.0",
"portfinder": "~0.2.1",
"request": "^2.88.0"
},
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"check-coverage": true,
"reporter": [
"text",
"text-summary"
]
},
"license": "BSD-3-Clause"
}