-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "@juit/webpack-reporter",
"version": "1.0.0",
"description": "Simple reporter for WebPack",
"main": "dist/reporter.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/juitnow/juit-webpack-reporter.git"
},
"scripts": {
"build": "rm -rf dist && npm run lint && npm run compile",
"compile": "tsc",
"lint": "eslint src",
"lintfix": "eslint --fix src"
},
"author": "Pier Fumagalli <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/juitnow/juit-webpack-reporter/issues"
},
"homepage": "https://github.com/juitnow/juit-webpack-reporter#readme",
"dependencies": {
"typescript": "^4.3.5"
},
"peerDependencies": {
"webpack": ">4"
},
"devDependencies": {
"@types/node": "<15",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-deprecation": "^1.2.1",
"webpack": "^5.47.1"
}
}