This repository has been archived by the owner on Apr 26, 2022. It is now read-only.
forked from smikula/webpack-bundle-diff
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.57 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
{
"name": "webpack-bundle-diff",
"version": "0.5.1",
"description": "Understand changes in webpack bundle size",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"bin": {
"webpack-bundle-diff": "./bin/webpack-bundle-diff",
"wbd": "./bin/webpack-bundle-diff"
},
"scripts": {
"build": "tsc",
"data": "yarn build && node --max-old-space-size=12288 lib/cli.js data sampledata/stats.json -o sampledata/bundledata.json",
"ddata": "yarn build && node --inspect-brk --max-old-space-size=12288 lib/cli.js data sampledata/stats.json -o sampledata/bundledata.json",
"diff": "yarn build && node lib/cli.js diff sampledata/data1.json sampledata/data2.json -o sampledata/diff.json",
"ddiff": "yarn build && node --inspect-brk lib/cli.js diff sampledata/data1.json sampledata/data2.json -o sampledata/diff.json",
"report": "yarn build && node lib/cli.js report sampledata/diff.json -o sampledata/report.md",
"dreport": "yarn build && node --inspect-brk lib/cli.js report sampledata/diff.json -o sampledata/report.md",
"test": "jest"
},
"author": "Scott Mikula <[email protected]>",
"dependencies": {
"JSONStream": "^1.3.5",
"commander": "^2.19.0",
"event-stream": "3.3.4"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/event-stream": "^3.3.34",
"@types/jest": "^26.0.15",
"@types/node": "^10.12.18",
"jest": "^26.6.0",
"ts-jest": "^26.4.1",
"typescript": "~4.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/smikula/webpack-bundle-diff.git"
},
"license": "MIT"
}