UNPKG

mhtml2html

Version:

Converts an mhtml document to a single html document

53 lines (52 loc) 1.23 kB
{ "name": "mhtml2html", "version": "3.0.0", "description": "Converts an mhtml document to a single html document", "author": "Mayank Sindwani", "license": "MIT", "homepage": "https://github.com/msindwan/mhtml2html#readme", "repository": { "type": "git", "url": "git+https://github.com/msindwan/mhtml2html.git" }, "files": [ "dist/", "index.js", "LICENSE.txt", "README.md" ], "main": "dist/mhtml2html.js", "bin": { "mhtml2html": "./index.js" }, "scripts": { "lint": "eslint src", "prebuild": "yarn lint", "build": "webpack --mode=production", "pretest": "yarn build", "test": "yarn mocha tests/ && karma start --single-run" }, "engines": { "node": ">=10" }, "dependencies": { "base-64": "^0.1.0", "jsdom": "^15.1.1", "quoted-printable": "^1.0.1", "yargs": "^15.1.0" }, "devDependencies": { "@babel/core": "^7.6.0", "babel-loader": "^8.0.6", "chai": "^4.2.0", "eslint": "^6.3.0", "karma": "^4.3.0", "karma-chai": "^0.1.0", "karma-chrome-launcher": "^3.1.0", "karma-cli": "^2.0.0", "karma-mocha": "^1.3.0", "mocha": "^6.2.0", "webpack": "^4.39.3", "webpack-cli": "^3.3.8" } }