mini-html-webpack-plugin
Version:
A miniature version of html-webpack-plugin with only necessary features
81 lines (80 loc) • 1.83 kB
JSON
{
"name": "mini-html-webpack-plugin",
"version": "3.1.3",
"description": "A miniature version of html-webpack-plugin with only necessary features",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "rimraf ./dist && tsc",
"watch": "tsc --watch",
"pretest": "npm run lint",
"test": "npm run test:jest",
"posttest": "npm run format && npm run build",
"lint": "eslint **/*.ts --cache --fix --ignore-path .gitignore",
"format": "prettier --write \"**/*.{ts,md}\"",
"test:jest": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"webpack",
"html",
"template"
],
"author": "Juho Vepsalainen",
"contributors": [
{
"name": "Artem Sapegin",
"url": "http://sapegin.me"
}
],
"license": "MIT",
"dependencies": {
"webpack-sources": "^2.0.1"
},
"homepage": "https://github.com/styleguidist/mini-html-webpack-plugin",
"repository": "styleguidist/mini-html-webpack-plugin",
"engines": {
"node": ">=10"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/webpack-sources": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"css-loader": "^5.0.0",
"eslint": "^6.8.0",
"eslint-config-tamia": "^7.1.2",
"husky": "^4.2.3",
"jest": "^26.5.3",
"lint-staged": "^10.1.0",
"memfs": "^3.2.0",
"mini-css-extract-plugin": "^1.1.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3",
"webpack": "^5.1.0"
},
"peerDependencies": {
"webpack": ">=4"
},
"lint-staged": {
"*.{ts,md}": [
"prettier --write"
],
"*.ts": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}