-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
86 lines (86 loc) · 1.96 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "multer-gridfs-storage",
"version": "5.0.2",
"description": "Multer storage engine for GridFS",
"main": "lib/index.js",
"scripts": {
"compile": "del-cli ./lib/** && tsc --declaration",
"watch": "del-cli ./lib/** && tsc --declaration -w",
"test": "npm run compile && ava",
"lint": "xo --fix",
"coverage": "npm run compile && nyc --reporter=lcov ava --timeout=30s",
"docs": "jsdoc -c ./conf.json --readme ./README.md",
"coveralls": "npm run coverage | coveralls"
},
"xo": {
"prettier": true,
"rules": {
"@typescript-eslint/restrict-plus-operands": 0
}
},
"keywords": [
"multer",
"mongodb",
"storage",
"gridfs"
],
"author": {
"name": "devconcept",
"email": "devconcept@outlook.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/devconcept/multer-gridfs-storage.git"
},
"dependencies": {
"@types/node": ">=14",
"@types/pump": "^1.1.0",
"has-own-prop": "^2.0.0",
"is-generator": "^1.0.3",
"is-promise": "^4.0.0",
"lodash.isplainobject": ">=0.8.0",
"mongodb-uri": "^0.9.7",
"pump": "^3.0.0"
},
"peerDependencies": {
"multer": ">1.4 || ~1.4.4-lts.1",
"mongodb": ">=6"
},
"devDependencies": {
"@ava/typescript": "^2.0.0",
"@types/express": ">=4",
"@types/express-serve-static-core": ">=4.17.21",
"@types/sinon": "^10.0.2",
"ava": "^3.1.0",
"coveralls": "^3.0.9",
"crypto-random-string": "^3.1.0",
"del-cli": "^4.0.1",
"delay": "^5.0.0",
"eslint": "^8.4.0",
"express": "^4.17.1",
"jsdoc": "^3.6.3",
"md5-file": "^5.0.0",
"mongoose": "^5.8.9",
"nyc": "^15.0.0",
"pify": "^5.0.0",
"sinon": "^14.0.0",
"supertest": "^6.1.3",
"ts-node": "^10.0.0",
"typescript": "^4.2.2",
"xo": "^0.48.0"
},
"engines": {
"node": ">=14"
},
"bugs": {
"url": "https://github.com/devconcept/multer-gridfs-storage/issues"
},
"homepage": "https://github.com/devconcept/multer-gridfs-storage",
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
"lib/"
]
}