-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.8 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
63
64
65
66
67
68
69
70
71
{
"name": "@myrotvorets/clean-up-after-multer",
"version": "1.1.7",
"description": "Express.js middleware to clean up uploaded files after multer",
"main": "dist/lib/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint -f gha .",
"lint:fix": "eslint --fix .",
"pretest": "npm run lint",
"test": "jest",
"posttest": "npm run build",
"prepare": "npm run build"
},
"files": [
"dist/lib/*.d.ts",
"dist/lib/*.js",
"dist/lib/*.js.map"
],
"typings": "dist/lib/index.d.ts",
"keywords": [
"cleanup",
"express",
"expressjs",
"middleware",
"multer"
],
"author": "Myrotvorets <[email protected]> (https://myrotvorets.center/)",
"license": "MIT",
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^2.24.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.11",
"@types/node": ">= 20.11.16",
"@types/supertest": "^6.0.2",
"eslint-formatter-gha": "^1.4.3",
"express": "^5.0.0",
"jest": "^29.7.0",
"jest-github-actions-reporter": "^1.0.3",
"jest-sonar-reporter": "^2.0.0",
"merge": "^2.1.1",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@types/express": "^4.17.8",
"@types/multer": "^1.4.4"
},
"peerDependenciesMeta": {
"@types/express": {
"optional": true
},
"@types/multer": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myrotvorets/clean-up-after-multer.git"
},
"bugs": {
"url": "https://github.com/myrotvorets/clean-up-after-multer/issues"
},
"homepage": "https://github.com/myrotvorets/clean-up-after-multer#readme"
}