forked from MQuy/webpack-deadcode-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 709 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 709 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
28
29
30
{
"name": "@tfboys/webpack-deadcode-plugin",
"version": "1.1.4",
"description": "Webpack plugin to detect unused files and unused exports in used files",
"repository": "https://github.com/lakerswgq/webpack-deadcode-plugin",
"main": "src/index.js",
"scripts": {
"postversion": "npm publish --access public",
"postpublish": "git push origin --all; git push origin --tags"
},
"keywords": [
"webpack",
"plugin",
"unused",
"deadcode"
],
"author": "Julien",
"license": "MIT",
"peerDependencies": {
"webpack": "> 3"
},
"engines": {
"node": ">=6.11.5"
},
"dependencies": {
"chalk": "^2.0.0",
"fast-glob": "^2.0.0",
"prompts": "^2.1.0"
}
}