UNPKG

partial-emlx-converter

Version:

Convert .emlx and .partial.emlx files created by Apple’s Mail.app to .eml

77 lines (76 loc) 2.08 kB
{ "name": "partial-emlx-converter", "description": "Convert .emlx and .partial.emlx files created by Apple’s Mail.app to .eml", "author": "Philipp Katz <philipp@philippkatz.de>", "version": "3.1.0", "main": "dist/converter.js", "types": "dist/converter.d.ts", "bin": { "partial-emlx-converter": "bin/partial-emlx-converter" }, "license": "MIT", "bugs": { "url": "https://github.com/qqilihq/partial-emlx-converter/issues" }, "repository": { "type": "git", "url": "git://github.com/qqilihq/partial-emlx-converter.git" }, "keywords": [ "eml", "eml-files", "emlx", "partialemlx", "macos", "mail.app" ], "scripts": { "build": "tsc --project tsconfig.build.json", "test": "nyc mocha", "lint": "eslint --ext .ts ./src ./test", "clean": "rimraf ./.nyc_output ./coverage ./dist", "preversion": "run-s clean lint test build", "postinstall": "patch-package" }, "dependencies": { "commander": "^13.1.0", "debug": "^4.3.3", "glob": "^7.2.0", "imapflow": "^1.0.181", "mailsplit": "^5.4.0", "patch-package": "^6.4.7", "plist": "^3.1.0", "postinstall-postinstall": "^2.1.0", "progress": "^2.0.3" }, "devDependencies": { "@types/commander": "^2.12.5", "@types/debug": "^4.1.7", "@types/expect.js": "^0.3.29", "@types/glob": "^7.2.0", "@types/imapflow": "^1.0.19", "@types/memorystream": "^0.3.0", "@types/mocha": "^10.0.1", "@types/node": "^10", "@types/plist": "^3.0.5", "@types/progress": "^2.0.5", "@typescript-eslint/eslint-plugin": "^5.8.1", "@typescript-eslint/parser": "^5.8.1", "eslint": "^8.6.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^4.0.0", "expect.js": "^0.3.1", "memorystream": "^0.3.1", "mocha": "^10.2.0", "mocha-junit-reporter": "^2.2.0", "npm-run-all": "^4.1.5", "nyc": "^15.1.0", "prettier": "^2.5.1", "rimraf": "^3.0.2", "ts-node": "^10.4.0", "typescript": "^4.5.4" }, "engines": { "node": ">=10" } }