-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.65 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
62
{
"name": "pechkin",
"version": "2.2.0",
"description": "A modern, asynchronous, flexible and configurable Node.js library for handling file uploads (i.e. multipart/form-data requests), written in TypeScript.",
"homepage": "https://github.com/rafasofizada/pechkin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rafasofizada/pechkin.git"
},
"keywords": [
"multipart",
"form-data",
"file",
"uploads",
"forms",
"files"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"ts:cjs": "tsc -p tsconfig.cjs.json",
"ts:es": "tsc -p tsconfig.esm.json",
"ts:typedefs": "tsc -p tsconfig.typedef.json",
"ts:all": "npm run ts:cjs && npm run ts:es && npm run ts:typedefs",
"ts:clean": "rimraf ./*.d.ts dist",
"build": "npm run clean && npm run ts:all",
"clean": "rimraf dist && npm run ts:clean",
"prepublishOnly": "npm run test && npm run build",
"postpublish": "npm run clean",
"test": "vitest"
},
"author": "Rafael Sofi-zada",
"email": "rafa.sofizadeh@gmail.com",
"license": "MIT",
"dependencies": {
"busboy": "^1.6.0"
},
"devDependencies": {
"@types/busboy": "^1.5.0",
"@types/express": "^4.17.17",
"@types/node": "^18.11.0",
"form-data-encoder": "^2.1.4",
"formdata-node": "^5.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4",
"vitest": "^0.25.2"
},
"engines": {
"node": ">=13.6.0"
},
"bugs": {
"url": "https://github.com/rafasofizada/pechkin/issues"
},
"directories": {
"example": "examples",
"test": "test"
}
}