-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
68 lines (68 loc) · 2.19 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
59
60
61
62
63
64
65
66
67
68
{
"name": "html-to-md",
"version": "0.8.5",
"description": "A JS library for convert HTML<String> to markdown<String>, gzip 10kb",
"main": "dist/index.js",
"keywords": [
"html2md",
"html2markdown",
"htmlToMarkdown",
"parseHtml",
"markdown",
"html"
],
"author": "stonehank <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/stonehank/html-to-md.git"
},
"homepage": "https://github.com/stonehank/html-to-md#README",
"license": "MIT",
"scripts": {
"prepublishOnly": "node prepublish.js",
"release": "npm run build && cross-env RELEASE_MODE=true npm publish",
"test:part": "jest",
"test": "jest --coverage && codecov",
"build": "npm run test && npm run build:demo && npm run build:main",
"build:main": "cross-env NODE_ENV=production webpack",
"build:demo": "cross-env NODE_ENV=production webpack --config webpack.demo.config.js",
"start": "cross-env NODE_ENV=development webpack-dev-server --open --config webpack.demo.config.js"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/preset-env": "7.4.5",
"@babel/preset-typescript": "^7.18.6",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "3.0.0",
"codecov": "^3.8.3",
"cross-env": "7.0.3",
"css-loader": "3.0.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.0",
"highlight.js": "9.15.8",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"jest": "24.8.0",
"markdown-it": "8.4.2",
"marked": "0.6.2",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"postcss-preset-env": "6.6.0",
"prettier": "^2.7.1",
"style-loader": "0.23.1",
"terser-webpack-plugin": "1.3.0",
"ts-loader": "^8.4.0",
"typescript": "^4.8.4",
"webpack": "4.33.0",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.7.1"
}
}