-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "webpack-exclude-assets-plugin",
"version": "0.1.1",
"description": "Plugin to exclude assets from webpack output",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:klaytonfaria/webpack-exclude-assets-plugin.git"
},
"keywords": [
"webpack",
"webpack 4",
"plugin",
"exclude",
"assets",
"chuncks",
"path",
"name"
],
"author": {
"name": "Klayton Faria",
"email": "klayton.souza@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/klaytonfaria/webpack-exclude-assets-plugin/issues"
},
"scripts": {
"test": "webpack --config example/webpack.config.js --mode production",
"release": "standard-version"
},
"homepage": "https://github.com/klaytonfaria/webpack-exclude-assets-plugin",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"css-loader": "^1.0.0",
"mini-css-extract-plugin": "^0.4.2",
"standard-version": "^4.4.0",
"webpack": "^4.17.1",
"webpack-command": "^0.4.1"
},
"dependencies": {
"webpack-log": "^2.0.0"
}
}