-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "esbuild-html-plugin",
"version": "0.0.1",
"main": "dist/index.js",
"author": "Alexey Rakityansky",
"license": "MIT",
"scripts": {
"lint": "eslint src",
"lint:fix": "yarn lint --fix",
"test": "jest --runInBand --verbose --coverage",
"test:watch": "jest --run-in-band --watch"
},
"devDependencies": {
"@types/html-minifier-terser": "^6.1.0",
"@types/jest": "^28.1.4",
"@types/js-beautify": "^1.13.3",
"@types/jsdom": "^16.2.14",
"@types/lodash.defaults": "^4.2.7",
"@types/lodash.template": "^4.5.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"esbuild": "^0.14.48",
"esbuild-plugin-clean": "^0.9.0",
"eslint": "^8.20.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"normalize.css": "^8.0.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"dependencies": {
"html-minifier-terser": "^7.0.0-beta.0",
"js-beautify": "^1.14.4",
"jsdom": "^20.0.0",
"lodash.defaults": "^4.2.0",
"lodash.template": "^4.5.0"
}
}