-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
39 lines (39 loc) · 918 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
{
"name": "async-busboy",
"version": "1.0.1",
"description": "Promise based multipart form parser",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/m4nuC/async-busboy"
},
"scripts": {
"test": "NODE_ENV=test mocha specs.js --harmony --reporter spec --bail",
"cover": "NODE_ENV=test istanbul cover -x specs.js _mocha specs.js -- --reporter spec --bail",
"lint": "prettier --check .",
"lint-fix": "prettier --write ."
},
"keywords": [
"koa",
"multipart",
"form",
"file-upload"
],
"author": "Emanuel Chappat <[email protected]>",
"license": "MIT",
"dependencies": {
"busboy": "^1.6.0"
},
"devDependencies": {
"expect": "^27.5.1",
"formstream": "*",
"istanbul": "*",
"mocha": "*",
"prettier": "^3.0.3"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true
}
}