-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 892 Bytes
/
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
{
"name": "webpack-stats-summary",
"version": "1.2.1",
"description": "Summarise Webpack stats",
"main": "dist/index.js",
"author": "Jason Galea <[email protected]>",
"license": "MIT",
"keywords": [
"webpack"
],
"repository": "github:lecstor/webpack-stats-summary",
"bugs": "https://github.com/lecstor/webpack-stats-summary/issues",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "tslint --project ./tsconfig.json",
"prepare": "npm run build"
},
"bin": "./bin/index.js",
"dependencies": {
"args": "^5.0.0",
"cli-table2": "^0.2.0",
"gzip-size": "^5.0.0",
"markdown-table": "^1.1.2"
},
"devDependencies": {
"@types/cli-table2": "^0.2.1",
"@types/gzip-size": "^4.1.0",
"@types/node": "^10.11.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.1.1"
}
}