UNPKG

mbox-attachment-extract

Version:

Node.js cli tool to extract attachments from .mbox files

59 lines (58 loc) 1.29 kB
{ "name": "mbox-attachment-extract", "version": "1.1.2", "description": "Node.js cli tool to extract attachments from .mbox files", "main": "index.js", "scripts": { "start": "node index.js", "test": "jest", "lint": "eslint . --fix" }, "bin": { "mbox-attachment-extract": "./index.js" }, "keywords": [ "mbox" ], "author": { "name": "André L. Adriano", "email": "andre@dev-next.com" }, "bugs": { "url": "https://github.com/andre000/mbox-attachment-extract/issues" }, "files": [ "index.js", "src/", "!src/__mocks__/" ], "license": "MIT", "dependencies": { "chalk": "^3.0.0", "mailparser": "^2.7.7", "meow": "^6.0.1", "node-mbox": "^1.0.0", "ora": "^4.0.3", "p-event": "^4.1.0", "sanitize-filename": "^1.6.3", "update-notifier": "^4.1.0" }, "devDependencies": { "eslint": "^6.8.0", "eslint-config-airbnb-base": "^14.0.0", "eslint-plugin-import": "^2.20.1", "husky": "^4.2.3", "jest": "^25.1.0", "rimraf": "^3.0.2" }, "repository": { "type": "git", "url": "git+https://github.com/andre000/mbox-attachment-extract.git" }, "husky": { "hooks": { "pre-commit": "npm run lint", "pre-push": "npm run lint && npm test" } } }