-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 737 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 737 Bytes
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
{
"name": "@jjwesterkamp/remove-assets-webpack-plugin",
"description": "A simple webpack plugin to remove assets from compilations.",
"repository": {
"url": "https://github.com/JJWesterkamp/remove-assets-webpack-plugin"
},
"homepage": "https://github.com/JJWesterkamp/remove-assets-webpack-plugin",
"author": "Jeffrey Westerkamp",
"license": "MIT",
"main": "dist/cjs.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"webpack": "^4.4.0 || ^5.0.0"
},
"dependencies": {
"@types/webpack": "^5.28.0",
"chalk": "^4.1.0"
},
"devDependencies": {
"typescript": "^4.2.4"
},
"scripts": {
"clean:dist": "rm -rf dist",
"build": "npm run clean:dist && tsc"
},
"version": "0.1.3"
}