forked from m4nuC/async-busboy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.5 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
{
"name": "@caff/async-busboy",
"version": "3.0.2",
"description": "Promise based multipart form parser",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/caffco/async-busboy"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"watch": "npm run build -- --watch src",
"prepublishOnly": "npm run build",
"test": "vitest",
"coverage": "npm test -- --coverage",
"lint": "eslint --fix .",
"format": "prettier --write .",
"prepare": "husky install"
},
"keywords": [
"koa",
"multipart",
"form",
"file-upload"
],
"author": "Lluís Ulzurrun de Asanza i Sàez <me@llu.is>",
"contributors": [
"Emanuel Chappat <emmanuel.chappat@gmail.com>"
],
"license": "MIT",
"dependencies": {
"@types/busboy": "^1.5.4",
"busboy": "^1.6.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vitest": "^2.0.1"
}
}