forked from principalstudio/html-webpack-inject-preload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "@principalstudio/html-webpack-inject-preload",
"version": "1.2.7",
"description": "A HTML Webpack plugin for injecting <link rel='preload'>",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config=./test/jest.config.js",
"all": "npm run build && npm run test && npm link",
"all-quick": "npm run build && npm link",
"prepublishOnly": "npm run build && npm run test"
},
"engines": {
"node": ">=10.23"
},
"repository": {
"type": "git",
"url": "git+https://github.com/principalstudio/html-webpack-inject-preload.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"preload",
"inject"
],
"author": "Principal Studio",
"bugs": {
"url": "https://github.com/principalstudio/html-webpack-inject-preload/issues"
},
"homepage": "https://github.com/principalstudio/html-webpack-inject-preload#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.32",
"@typescript-eslint/parser": "^4.16.1",
"css-loader": "^5.1.1",
"eslint": "^7.21.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "5.3.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.9",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3",
"url-loader": "^4.1.1",
"webpack": "^5.24.4"
},
"peerDependencies": {
"html-webpack-plugin": "^4.0.0 || ^5.0.0",
"webpack": "^4.0.0 || ^5.0.0"
}
}