87 lines
2.0 KiB
JSON
87 lines
2.0 KiB
JSON
{
|
|
"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/express": "^4.17.6",
|
|
"@types/mongodb": "^3.5.25",
|
|
"@types/multer": "^1.4.3",
|
|
"@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": ">=2",
|
|
"mongodb-uri": "^0.9.7",
|
|
"pump": "^3.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"multer": "^1.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@ava/typescript": "^2.0.0",
|
|
"@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": "^7.2.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": "^11.1.1",
|
|
"supertest": "^6.1.3",
|
|
"ts-node": "^10.0.0",
|
|
"typescript": "^4.2.2",
|
|
"xo": "^0.44.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"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/"
|
|
]
|
|
}
|