-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.86 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
{
"name": "html-inline-script-webpack-plugin",
"version": "3.2.1",
"description": "A webpack plugin for converting external script files to inline script block. Requires 'html-webpack-plugin' to work.",
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf ./dist && tsc --build --force --verbose",
"lint": "eslint --ext .ts,js src",
"prepare": "husky install && install-peers",
"first-release": "npx standard-version --commit-all --tag-prefix v --first-release",
"release": "npx standard-version --commit-all --tag-prefix v",
"test": "jest --verbose --watchAll --config ./jest.config.js --silent",
"test:ci": "yarn test --ci --watchAll=false --runInBand --detectOpenHandles"
},
"author": "Ice Lam",
"repository": {
"url": "https://github.com/icelam/html-inline-script-webpack-plugin",
"type": "git"
},
"license": "MIT",
"keywords": [
"webpack",
"webpack4",
"webpack5",
"webpack-plugin",
"html-webpack-plugin",
"inline",
"internal",
"embedded",
"source",
"inline-source",
"script",
"inline-script"
],
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/html-webpack-plugin": "^3.2.3",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^27.1.4",
"husky": "^8.0.1",
"install-peers-cli": "^2.2.0",
"jest": "^26.6.3",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "^3.0.1",
"ts-jest": "^26.5.3",
"typescript": "^4.1.3"
},
"peerDependencies": {
"html-webpack-plugin": "^5.0.0",
"webpack": "^5.0.0"
},
"engines": {
"npm": ">=6.0.0",
"node": ">=14.0.0"
}
}