-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 1.8 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "mini-html-webpack-plugin",
"version": "0.0.0-development",
"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"
}
}
}