UNPKG

1.4 kBJSONView Raw
1{
2 "name": "mini-html-webpack-plugin",
3 "version": "0.2.2",
4 "description": "A miniature version of html-webpack-plugin with less functionality",
5 "main": "index.js",
6 "files": [
7 "index.js"
8 ],
9 "scripts": {
10 "pretest": "npm run lint",
11 "test": "true && npm run test:jest",
12 "posttest": "npm run format",
13 "lint": "eslint . --cache --fix",
14 "format": "prettier --write '**/*.{js,md}'",
15 "precommit": "lint-staged",
16 "test:jest": "jest",
17 "test:watch": "jest --watch",
18 "test:coverage": "jest --coverage"
19 },
20 "keywords": [
21 "webpack",
22 "html",
23 "template"
24 ],
25 "author": "Juho Vepsalainen",
26 "contributors": [
27 {
28 "name": "Artem Sapegin",
29 "url": "http://sapegin.me"
30 }
31 ],
32 "license": "MIT",
33 "dependencies": {
34 "webpack-sources": "^1.1.0"
35 },
36 "homepage": "https://github.com/styleguidist/mini-html-webpack-plugin",
37 "repository": "styleguidist/mini-html-webpack-plugin",
38 "engines": {
39 "node": ">=6.9"
40 },
41 "devDependencies": {
42 "@webpack-contrib/test-utils": "^0.1.2",
43 "eslint": "^4.19.1",
44 "eslint-config-tamia": "^5.0.1",
45 "husky": "^0.14.3",
46 "jest": "^22.4.3",
47 "lint-staged": "^7.0.0",
48 "prettier": "^1.11.1",
49 "webpack": "^4.4.1"
50 },
51 "lint-staged": {
52 "*.{js,md}": [
53 "prettier --write",
54 "git add"
55 ],
56 "*.js": [
57 "eslint --fix",
58 "git add"
59 ]
60 }
61}