generated from Richienb/node-module-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
46 lines (46 loc) · 804 Bytes
/
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
{
"name": "node-polyfill-webpack-plugin",
"version": "4.1.0",
"description": "Polyfill Node.js core modules in Webpack.",
"repository": "Richienb/node-polyfill-webpack-plugin",
"author": {
"name": "Richie Bendall",
"email": "[email protected]"
},
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=14"
},
"scripts": {
"test": "xo && ava"
},
"keywords": [
"webpack",
"webpack-plugin",
"node",
"polyfill"
],
"dependencies": {
"node-stdlib-browser": "^1.3.0",
"type-fest": "^4.27.0"
},
"devDependencies": {
"ava": "^6.2.0",
"p-webpack": "^1.0.1",
"webpack": "^5.96.1",
"xo": "^0.59.3"
},
"peerDependencies": {
"webpack": ">=5"
},
"xo": {
"rules": {
"unicorn/prefer-module": "off"
}
}
}