-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
68 lines (68 loc) · 1.64 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
{
"name": "html-inline-css-webpack-plugin",
"version": "1.11.2",
"description": "☄️ A webpack plugin for convert external stylesheet to embedded stylesheet, aka document stylesheet",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"build": "rm -rf ./build && tsc",
"prettier": "prettier '@(src)/**/*.@(ts)' --write",
"lint": "tslint -p tsconfig.json --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Runjuu/html-inline-css-webpack-plugin.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"tslint -p tsconfig.json --fix",
"git add"
]
},
"keywords": [
"webpack",
"webpack4",
"webpack5",
"webpack-plugin",
"inline",
"internal",
"embedded",
"document",
"css",
"style",
"stylesheet"
],
"author": "Runjuu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Runjuu/html-inline-css-webpack-plugin/issues"
},
"homepage": "https://github.com/Runjuu/html-inline-css-webpack-plugin#readme",
"devDependencies": {
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.2",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"tapable": "^2.2.1",
"tslint": "^5.20.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-sonarts": "^1.8.0",
"typescript": "^5.1.6",
"webpack": "^5.88.2"
},
"peerDependencies": {
"html-webpack-plugin": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"lodash": "^4.17.21",
"tslib": "^2.6.0"
}
}