-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "clean-terminal-webpack-plugin",
"version": "3.0.0",
"description": "Cleans your terminal output during development to only show the latest build information.",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint index.js",
"lint:format": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danillouz/clean-terminal-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"clean",
"terminal"
],
"author": "Daniël Illouz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danillouz/clean-terminal-webpack-plugin/issues"
},
"homepage": "https://github.com/danillouz/clean-terminal-webpack-plugin#readme",
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1"
}
}