1 | {
|
2 | "name": "multer-storage-cloudinary",
|
3 | "version": "4.0.0",
|
4 | "description": "A Cloudinary multer storage engine",
|
5 | "main": "lib/index.js",
|
6 | "scripts": {
|
7 | "prepublishOnly": "npm run build",
|
8 | "build": "npm run clean && tsc",
|
9 | "test": "jest",
|
10 | "clean": "rimraf lib"
|
11 | },
|
12 | "keywords": [
|
13 | "multer",
|
14 | "cloudinary",
|
15 | "storage",
|
16 | "engine",
|
17 | "upload",
|
18 | "typescript"
|
19 | ],
|
20 | "devDependencies": {
|
21 | "@types/express": "^4.17.6",
|
22 | "@types/jest": "^25.2.3",
|
23 | "@types/multer": "^1.4.3",
|
24 | "@types/superagent": "^4.1.7",
|
25 | "@typescript-eslint/eslint-plugin": "^3.0.1",
|
26 | "@typescript-eslint/parser": "^3.0.1",
|
27 | "cloudinary": "^1.21.0",
|
28 | "eslint": "^7.1.0",
|
29 | "eslint-config-prettier": "^6.11.0",
|
30 | "form-data": "^3.0.0",
|
31 | "husky": "^4.2.5",
|
32 | "jest": "^26.0.1",
|
33 | "lint-staged": "^10.2.6",
|
34 | "multer": "^1.4.2",
|
35 | "prettier": "^2.0.5",
|
36 | "rimraf": "^3.0.2",
|
37 | "superagent": "^5.2.2",
|
38 | "ts-jest": "^26.0.0",
|
39 | "typescript": "^3.9.3"
|
40 | },
|
41 | "repository": {
|
42 | "type": "git",
|
43 | "url": "git://github.com/affanshahid/multer-storage-cloudinary.git"
|
44 | },
|
45 | "author": "Affan Shahid",
|
46 | "license": "MIT",
|
47 | "bugs": {
|
48 | "url": "https://github.com/affanshahid/multer-storage-cloudinary/issues"
|
49 | },
|
50 | "homepage": "https://github.com/affanshahid/multer-storage-cloudinary#readme",
|
51 | "peerDependencies": {
|
52 | "cloudinary": "^1.21.0"
|
53 | },
|
54 | "husky": {
|
55 | "hooks": {
|
56 | "pre-commit": "lint-staged"
|
57 | }
|
58 | },
|
59 | "lint-staged": {
|
60 | "*.{ts}": "eslint --cache --fix",
|
61 | "*.{ts,json,md}": "prettier --write"
|
62 | }
|
63 | }
|