This repository has been archived by the owner on Apr 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.44 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "html-module-loader",
"version": "0.3.1",
"author": "Bernardo Sunderhus",
"repository": {
"url": "https://github.com/bsunderhus/html-module-loader"
},
"bugs": {
"url": "https://github.com/bsunderhus/html-module-loader/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"webpack",
"loader",
"html"
],
"description": "html module loader module for webpack",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint src/*.ts tests/*.ts",
"test": "npm run jest",
"jest": "jest",
"pretest": "npm run lint && npm run type-check",
"type-check": "tsc",
"bundle": "tsc -p tsconfig.build.json",
"prepare": "npm run bundle",
"prepublishOnly": "npm test",
"clean": "rimraf dist",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"dependencies": {
"html-minifier": "^4.0.0",
"htmlparser2": "^3.10.1",
"loader-utils": "^1.2.3"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-typescript": "^7.3.3",
"@types/html-minifier": "^3.5.3",
"@types/htmlparser2": "^3.10.0",
"@types/jest": "^24.0.15",
"@types/loader-utils": "^1.1.3",
"@types/memory-fs": "^0.3.2",
"@types/webpack": "^4.4.34",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"coveralls": "^3.0.5",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"html-loader": "^0.5.5",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"memory-fs": "^0.4.1",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"typescript": "^3.5.3",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
}
}