forked from Richienb/node-polyfill-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.6 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
{
"name": "gopeed-polyfill-webpack-plugin",
"version": "1.0.6",
"description": "Polyfill Node.js core modules in Webpack.",
"repository": "GopeedLab/gopeed-polyfill-webpack-plugin",
"author": {
"name": "Levi",
"email": "[email protected]"
},
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"modules"
],
"engines": {
"node": ">=14"
},
"scripts": {
"test": "xo && ava"
},
"keywords": [
"webpack",
"webpack-plugin",
"node",
"polyfill"
],
"dependencies": {
"assert": "^2.1.0",
"base-64": "^1.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"builtin-status-codes": "^3.0.0",
"console-browserify": "^1.2.0",
"constants-browserify": "^1.0.0",
"crypto-browserify": "^3.12.0",
"domain-browser": "^4.22.0",
"event-target-shim": "^6.0.2",
"events": "^3.3.0",
"https-browserify": "^1.0.0",
"inherits": "^2.0.4",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"punycode": "^2.3.0",
"querystring-es3": "^0.2.1",
"readable-stream": "^3.6.0",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"text-encoding-utf-8": "^1.0.2",
"timers-browserify": "^2.0.12",
"tty-browserify": "^0.0.1",
"type-fest": "^4.4.0",
"url": "github:mischnic/node-url#c4cb4cca5480dd7fb748d8b56a3882ac8e54fbaf",
"util": "^0.12.5",
"xtend": "^4.0.2"
},
"devDependencies": {
"ava": "^5.3.1",
"p-webpack": "^1.0.1",
"webpack": "^5.88.2",
"xo": "^0.56.0"
},
"peerDependencies": {
"webpack": ">=5"
},
"xo": {
"rules": {
"unicorn/prefer-module": "off"
},
"ignores": [
"modules/**"
]
}
}