1 | {
|
2 | "name": "html-loader",
|
3 | "version": "2.1.2",
|
4 | "description": "Html loader module for webpack",
|
5 | "license": "MIT",
|
6 | "repository": "webpack-contrib/html-loader",
|
7 | "author": "Tobias Koppers @sokra",
|
8 | "homepage": "https://github.com/webpack-contrib/html-loader",
|
9 | "bugs": "https://github.com/webpack-contrib/html-loader/issues",
|
10 | "funding": {
|
11 | "type": "opencollective",
|
12 | "url": "https://opencollective.com/webpack"
|
13 | },
|
14 | "main": "dist/cjs.js",
|
15 | "engines": {
|
16 | "node": ">= 10.13.0"
|
17 | },
|
18 | "scripts": {
|
19 | "start": "npm run build -- -w",
|
20 | "clean": "del-cli dist",
|
21 | "validate:runtime": "es-check es5 \"dist/runtime/**/*.js\"",
|
22 | "prebuild": "npm run clean",
|
23 | "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
|
24 | "postbuild": "npm run validate:runtime",
|
25 | "commitlint": "commitlint --from=master",
|
26 | "security": "npm audit",
|
27 | "lint:prettier": "prettier --list-different .",
|
28 | "lint:js": "eslint --cache .",
|
29 | "lint": "npm-run-all -l -p \"lint:**\"",
|
30 | "test:only": "cross-env NODE_ENV=test jest",
|
31 | "test:watch": "npm run test:only -- --watch",
|
32 | "test:coverage": "npm run test:only -- --coverage",
|
33 | "pretest": "npm run lint",
|
34 | "test": "npm run test:coverage",
|
35 | "prepare": "npm run build",
|
36 | "release": "standard-version",
|
37 | "defaults": "webpack-defaults",
|
38 | "_postinstall": "husky install",
|
39 | "prepublishOnly": "pinst --disable",
|
40 | "postpublish": "pinst --enable"
|
41 | },
|
42 | "files": [
|
43 | "dist"
|
44 | ],
|
45 | "peerDependencies": {
|
46 | "webpack": "^5.0.0"
|
47 | },
|
48 | "dependencies": {
|
49 | "html-minifier-terser": "^5.1.1",
|
50 | "parse5": "^6.0.1"
|
51 | },
|
52 | "devDependencies": {
|
53 | "@babel/cli": "^7.12.10",
|
54 | "@babel/core": "^7.12.10",
|
55 | "@babel/preset-env": "^7.12.11",
|
56 | "@commitlint/cli": "^11.0.0",
|
57 | "@commitlint/config-conventional": "^11.0.0",
|
58 | "@webpack-contrib/defaults": "^6.3.0",
|
59 | "@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
60 | "babel-jest": "^26.6.3",
|
61 | "cross-env": "^7.0.3",
|
62 | "del": "^6.0.0",
|
63 | "del-cli": "^3.0.1",
|
64 | "es-check": "^5.2.0",
|
65 | "eslint": "^7.20.0",
|
66 | "eslint-config-prettier": "^7.2.0",
|
67 | "eslint-plugin-import": "^2.22.1",
|
68 | "handlebars": "^4.7.6",
|
69 | "html-webpack-plugin": "^5.2.0",
|
70 | "husky": "^5.0.9",
|
71 | "jest": "^26.6.3",
|
72 | "lint-staged": "^10.5.4",
|
73 | "memfs": "^3.2.0",
|
74 | "npm-run-all": "^4.1.5",
|
75 | "pinst": "^2.1.4",
|
76 | "posthtml": "^0.15.1",
|
77 | "posthtml-webp": "^2.1.0",
|
78 | "prettier": "^2.1.2",
|
79 | "standard-version": "^9.0.0",
|
80 | "unescape-unicode": "^0.2.0",
|
81 | "webpack": "^5.21.2"
|
82 | },
|
83 | "keywords": [
|
84 | "webpack",
|
85 | "html",
|
86 | "loader"
|
87 | ]
|
88 | }
|