forked from mastilver/dynamic-cdn-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.97 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
{
"name": "@forivall/dynamic-cdn-webpack-plugin",
"version": "5.2.0",
"description": "Dynamically get your dependencies from a cdn rather than bundling them in your app",
"license": "MIT",
"repository": "forivall/dynamic-cdn-webpack-plugin",
"author": {
"name": "Thomas Sileghem",
"email": "[email protected]",
"url": "https://github.com/mastilver"
},
"engines": {
"node": ">=10.13.0"
},
"main": "index.js",
"types": "lib",
"scripts": {
"prepublishOnly": "run-s build lint test",
"build": "tsc --build",
"test": "tap",
"lint": "eslint .",
"version": "all-contributors generate",
"add-contributor": "all-contributors add"
},
"files": [
"index.js",
"tsconfig.json",
"src",
"lib"
],
"keywords": [
"webpack",
"cdn",
"unpkg.com",
"html-webpack-plugin",
"webpack-manifest-plugin",
"html",
"script",
"assets",
"externals"
],
"dependencies": {
"module-to-cdn": "^3.1.5",
"read-pkg-up": "^7.0.1",
"resolve-pkg": "^2.0.0"
},
"peerDependencies": {
"webpack": ">=5"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@tsconfig/node10": "^1.0.8",
"@types/node": "^10.17.60",
"@types/prettier": "^2.4.3",
"@types/tap": "^15.0.5",
"@types/xo": "^0.39.2",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"all-contributors-cli": "^6.20.0",
"codecov": "^3.8.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo": "^0.39.0",
"eslint-config-xo-typescript": "^0.49.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.0",
"html-webpack-plugin": "^5.3.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"tap": "^15.1.6",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4",
"webpack": "^5.42.0",
"webpack-manifest-plugin": "3.1.1"
},
"publishConfig": {
"access": "public"
}
}