-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "@nxcd/barkeeper",
"version": "4.10.0",
"description": "A middleware express for handling multipart/form-data to redis",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"build:clean": "npm run clean && npm run build",
"build:watch": "tsc -w",
"lint": "tslint --project tsconfig.json",
"prepare": "npm run build:clean && husky install",
"postpublish": "npm run clean"
},
"keywords": [
"redis",
"busboy",
"buffer",
"form-data"
],
"author": "Caio Delgado <[email protected]>",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"husky": "^7.0.0",
"standard": "^16.0.4",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@hapi/boom": "^9.1.4",
"@types/busboy": "^0.2.3",
"@types/express": "^4.17.0",
"@types/ioredis": "^4.0.17",
"@types/on-finished": "^2.3.1",
"axios": "^0.24.0",
"busboy": "^0.3.1",
"file-type": "^13.0.1",
"on-finished": "^2.3.0"
}
}