UNPKG

2.43 kBJSONView Raw
1{
2 "name": "html-loader",
3 "version": "3.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": ">= 12.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 --production",
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": "husky install && npm run build",
36 "release": "standard-version"
37 },
38 "files": [
39 "dist"
40 ],
41 "peerDependencies": {
42 "webpack": "^5.0.0"
43 },
44 "dependencies": {
45 "html-minifier-terser": "^6.0.2",
46 "parse5": "^6.0.1"
47 },
48 "devDependencies": {
49 "@babel/cli": "^7.16.7",
50 "@babel/core": "^7.16.7",
51 "@babel/preset-env": "^7.16.7",
52 "@commitlint/cli": "^14.1.0",
53 "@commitlint/config-conventional": "^14.1.0",
54 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
55 "babel-jest": "^27.4.5",
56 "cross-env": "^7.0.3",
57 "del": "^6.0.0",
58 "del-cli": "^4.0.0",
59 "es-check": "^6.1.1",
60 "eslint": "^8.6.0",
61 "eslint-config-prettier": "^8.3.0",
62 "eslint-plugin-import": "^2.25.4",
63 "handlebars": "^4.7.7",
64 "html-webpack-plugin": "^5.3.2",
65 "husky": "^7.0.0",
66 "jest": "^27.4.5",
67 "lint-staged": "^11.0.0",
68 "memfs": "^3.4.1",
69 "npm-run-all": "^4.1.5",
70 "posthtml": "^0.16.4",
71 "posthtml-webp": "^2.1.0",
72 "prettier": "^2.5.1",
73 "standard-version": "^9.3.0",
74 "unescape-unicode": "^0.2.0",
75 "webpack": "^5.65.0"
76 },
77 "keywords": [
78 "webpack",
79 "html",
80 "loader"
81 ]
82}