filesrocket
Version:
Filesrocket is a Node.js package that takes care of the file management of any cloud storage service (Local, Cloudinary, Amazon S3)
72 lines (71 loc) • 2.02 kB
JSON
{
"name": "filesrocket",
"version": "0.0.8",
"description": "Filesrocket is a Node.js package that takes care of the file management of any cloud storage service (Local, Cloudinary, Amazon S3)",
"main": "lib/index.js",
"types": "lib",
"keywords": [
"filemanager",
"filemanagement",
"upload",
"storage",
"files"
],
"author": {
"name": "Ivan Zaldivar",
"url": "https://github.com/thebug404"
},
"bugs": {
"url": "https://github.com/Filesrocket/filesrocket/issues"
},
"directories": {
"lib": "lib"
},
"repository": {
"url": "https://github.com/Filesrocket/filesrocket"
},
"files": [
"lib/**",
"README.md",
"LICENCE"
],
"scripts": {
"build": "npm run lint && npm run test && tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"release": "standard-version",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"dependencies": {
"busboy": "1.5.0",
"express": "4.17.1",
"http-errors": "1.7.2",
"uniqid": "5.4.0"
},
"devDependencies": {
"@types/busboy": "^1.3.0",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.17",
"@types/supertest": "^2.0.11",
"@types/uniqid": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"form-data": "^4.0.0",
"mocha": "^9.1.4",
"standard-version": "^9.3.2",
"supertest": "^6.2.2",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
}
}