forked from webpack-contrib/webpack-bundle-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.77 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "webpack-bundle-analyzer",
"version": "3.0.3",
"description": "Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap",
"author": "Yury Grunin <grunin.ya@ya.ru>",
"license": "MIT",
"homepage": "https://github.com/webpack-contrib/webpack-bundle-analyzer",
"changelog": "https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/CHANGELOG.md",
"bugs": {
"url": "https://github.com/webpack-contrib/webpack-bundle-analyzer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpack-contrib/webpack-bundle-analyzer.git"
},
"main": "lib/index.js",
"bin": "lib/bin/analyzer.js",
"engines": {
"node": ">= 6.14.4"
},
"scripts": {
"start": "gulp watch",
"build": "gulp build",
"npm-publish": "npm run lint && npm run build && npm test && npm publish",
"lint": "eslint --ext js,jsx .",
"test": "mocha --exit --require @babel/register",
"test-dev": "mocha --watch --require @babel/register"
},
"files": [
"public",
"lib",
"src",
"views"
],
"dependencies": {
"acorn": "^5.7.3",
"bfj": "^6.1.1",
"chalk": "^2.4.1",
"commander": "^2.18.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"filesize": "^3.6.1",
"gzip-size": "^5.0.0",
"lodash": "^4.17.10",
"mkdirp": "^0.5.1",
"opener": "^1.5.1",
"ws": "^6.0.0"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.0.0",
"@babel/plugin-proposal-decorators": "7.0.0",
"@babel/plugin-transform-runtime": "7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"@babel/runtime": "7.0.0",
"babel-eslint": "9.0.0",
"babel-loader": "8.0.2",
"babel-plugin-lodash": "3.3.4",
"chai": "4.1.2",
"chai-subset": "1.6.0",
"classnames": "2.2.6",
"css-loader": "1.0.0",
"cssnano": "4.1.0",
"del": "3.0.0",
"eslint": "4.16.0",
"eslint-config-th0r": "1.0.1",
"eslint-config-th0r-react": "1.0.1",
"eslint-plugin-react": "7.6.1",
"exports-loader": "0.7.0",
"gulp": "4.0.0",
"gulp-babel": "8.0.0",
"mobx": "5.1.0",
"mobx-preact": "3.0.0",
"mocha": "5.2.0",
"nightmare": "3.0.1",
"postcss-icss-values": "2.0.1",
"postcss-loader": "3.0.0",
"preact": "8.3.1",
"stream-combiner2": "1.1.1",
"style-loader": "0.23.0",
"uglifyjs-webpack-plugin": "1.3.0",
"url-loader": "1.1.1",
"webpack": "4.18.0",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.8"
},
"keywords": [
"webpack",
"bundle",
"analyzer",
"modules",
"size",
"interactive",
"chart",
"treemap",
"zoomable",
"zoom"
]
}