webpack-bundle-size-analyzer
Version:
A utility to find how your dependencies are contributing to the size of your Webpack bundles
56 lines (55 loc) • 1.32 kB
JSON
{
"name": "webpack-bundle-size-analyzer",
"version": "3.1.0",
"description": "A utility to find how your dependencies are contributing to the size of your Webpack bundles",
"main": "build/src/index.js",
"scripts": {
"coverage": "jest --coverage --no-cache",
"test": "make test",
"version": "make clean && make"
},
"bin": {
"webpack-bundle-size-analyzer": "./webpack-bundle-size-analyzer"
},
"keywords": [
"webpack"
],
"author": "Robert Knight <robertknight@gmail.com>",
"license": "ISC",
"dependencies": {
"commander": "^2.19.0",
"filesize": "^3.6.1",
"humanize": "0.0.9"
},
"files": [
"build/src",
"webpack-bundle-size-analyzer"
],
"homepage": "http://github.com/robertknight/webpack-bundle-size-analyzer",
"repository": {
"type": "git",
"url": "http://github.com/robertknight/webpack-bundle-size-analyzer.git"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"jest": {
"coverageReporters": [
"text-summary",
"html",
"lcovonly"
],
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": ".*_test.ts$"
}
}