You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.6 KiB
89 lines
2.6 KiB
{
|
|
"name": "html-loader",
|
|
"version": "1.1.0",
|
|
"description": "Html loader module for webpack",
|
|
"license": "MIT",
|
|
"repository": "webpack-contrib/html-loader",
|
|
"author": "Tobias Koppers @sokra",
|
|
"homepage": "https://github.com/webpack-contrib/html-loader",
|
|
"bugs": "https://github.com/webpack-contrib/html-loader/issues",
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/webpack"
|
|
},
|
|
"main": "dist/cjs.js",
|
|
"engines": {
|
|
"node": ">= 10.13.0"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run build -- -w",
|
|
"clean": "del-cli dist",
|
|
"validate:runtime": "es-check es5 \"dist/runtime/**/*.js\"",
|
|
"prebuild": "npm run clean",
|
|
"build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
|
|
"postbuild": "npm run validate:runtime",
|
|
"commitlint": "commitlint --from=master",
|
|
"security": "npm audit",
|
|
"lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
|
|
"lint:js": "eslint --cache .",
|
|
"lint": "npm-run-all -l -p \"lint:**\"",
|
|
"test:only": "cross-env NODE_ENV=test jest",
|
|
"test:watch": "npm run test:only -- --watch",
|
|
"test:coverage": "npm run test:only -- --coverage",
|
|
"pretest": "npm run lint",
|
|
"test": "npm run test:coverage",
|
|
"prepare": "npm run build",
|
|
"release": "standard-version",
|
|
"defaults": "webpack-defaults"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"peerDependencies": {
|
|
"webpack": "^4.0.0 || ^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"html-minifier-terser": "^5.0.5",
|
|
"htmlparser2": "^4.1.0",
|
|
"loader-utils": "^2.0.0",
|
|
"parse-srcset": "^1.0.2",
|
|
"schema-utils": "^2.6.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.8.4",
|
|
"@babel/core": "^7.9.0",
|
|
"@babel/preset-env": "^7.9.0",
|
|
"@commitlint/cli": "^8.3.5",
|
|
"@commitlint/config-conventional": "^8.3.4",
|
|
"@webpack-contrib/defaults": "^6.3.0",
|
|
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
|
"babel-jest": "^25.2.6",
|
|
"commitlint-azure-pipelines-cli": "^1.0.3",
|
|
"cross-env": "^7.0.2",
|
|
"del": "^5.1.0",
|
|
"del-cli": "^3.0.0",
|
|
"es-check": "^5.1.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.10.1",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"file-loader": "^6.0.0",
|
|
"handlebars": "^4.7.4",
|
|
"husky": "^4.2.3",
|
|
"jest": "^25.2.6",
|
|
"jest-junit": "^10.0.0",
|
|
"lint-staged": "^10.1.1",
|
|
"memfs": "^3.1.2",
|
|
"npm-run-all": "^4.1.5",
|
|
"posthtml": "^0.12.0",
|
|
"posthtml-webp": "^1.5.0",
|
|
"prettier": "^2.0.2",
|
|
"standard-version": "^7.1.0",
|
|
"webpack": "^4.42.0"
|
|
},
|
|
"keywords": [
|
|
"webpack",
|
|
"html",
|
|
"loader"
|
|
]
|
|
}
|