-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
43 lines (43 loc) · 929 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
{
"name": "co-busboy",
"description": "Busboy multipart parser as a yieldable",
"version": "2.0.1",
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cojs/co-busboy.git"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/cojs/co-busboy/issues"
},
"engines": {
"node": ">= 14.0.0"
},
"dependencies": {
"black-hole-stream": "~0.0.1",
"busboy": "^1.6.0",
"chan": "^0.6.1",
"inflation": "^2.0.0"
},
"devDependencies": {
"c8": "^7.12.0",
"co": "^4.6.0",
"formstream": "^1.0.0",
"mocha": "^10.0.0"
},
"scripts": {
"test": "mocha **/*.test.js",
"lint": "echo 'ignore'",
"ci": "c8 npm test"
},
"files": [
"index.js"
]
}