-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "webpack-cdn-inject",
"keywords": [
"webpack",
"cdn",
"html",
"webpack cdn",
"webpack html cdn",
"webpack cdn plugin"
],
"version": "1.2.0",
"description": "Plugin to inject CDN script blocks to DOM",
"repository": "drolsen/webpack-cdn-inject",
"bugs": {
"url": "https://github.com/drolsen/webpack-cdn-inject/issues"
},
"author": "Devin R. Olsen <[email protected]> (http://devinrolsen.com)",
"license": "MIT",
"scripts": {
"test": "npm run body-test && npm run head-test && npm run copy-test",
"body-test": "webpack --config ./test/body.test.config.js --mode production",
"head-test": "webpack --config ./test/head.test.config.js --mode production",
"copy-test": "webpack --config ./test/copy.test.config.js --mode production"
},
"engines": {
"node": ">=14.17.0"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.1.0",
"html-loader": "^3.0.1",
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}