forked from msindwan/mhtml2html
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@luminati-io/mhtml2html",
"version": "3.0.0-lum.1",
"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": "21.1.2",
"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"
},
"bugs": {
"url": "https://github.com/msindwan/mhtml2html/issues"
},
"directories": {
"test": "tests"
}
}