-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.91 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": "multer-cloudflare-storage",
"version": "1.1.0",
"description": "Multer engine allowing users to upload to Cloudflare Images with ease 🚀",
"author": "Zaid \"Nico\"",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./": "./"
},
"files": [
"dist/"
],
"tags": [
"multer",
"multer-engine",
"multer-storage",
"multer-cloudflare"
],
"scripts": {
"build": "npx tsc && npx gen-esm-wrapper . ./dist/index.mjs",
"lint": "npx eslint src/ --ext .ts,.js",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run lint && npx rimraf dist/ && npm run build",
"prepare": "husky install",
"prettier": "prettier --write **/*.{ts,js,json,yml,yaml}"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.0",
"@types/node-fetch": "2.6.9",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"gen-esm-wrapper": "^1.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"rimraf": "^5.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"form-data": "^4.0.0",
"node-fetch": "^3.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaida04/multer-cloudflare-storage.git"
},
"bugs": {
"url": "https://github.com/zaida04/multer-cloudflare-storage.git/issues"
},
"homepage": "https://github.com/zaida04/multer-cloudflare-storage.git#readme"
}