forked from webpack-contrib/webpack-bundle-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.33 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
{
"name": "webpack-bundle-analyzer",
"version": "2.2.1",
"description": "Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap",
"author": "Yury Grunin <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/th0r/webpack-bundle-analyzer",
"changelog": "https://github.com/th0r/webpack-bundle-analyzer/blob/master/CHANGELOG.md",
"bugs": {
"url": "https://github.com/th0r/webpack-bundle-analyzer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/th0r/webpack-bundle-analyzer.git"
},
"main": "lib/index.js",
"bin": "lib/bin/analyzer.js",
"engines": {
"node": ">= 4"
},
"scripts": {
"start": "gulp watch",
"build": "gulp build",
"npm-publish": "npm run build && npm test && npm publish",
"lint": "eslint --ext js,jsx .",
"test": "mocha --compilers js:babel-core/register -r babel-polyfill",
"test-dev": "mocha --watch --compilers js:babel-core/register -r babel-polyfill"
},
"files": [
"public",
"lib",
"src",
"views"
],
"dependencies": {
"acorn": "^4.0.3",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"ejs": "^2.5.5",
"express": "^4.14.0",
"filesize": "^3.3.0",
"gzip-size": "^3.0.0",
"lodash": "^4.17.2",
"mkdirp": "^0.5.1",
"opener": "^1.4.2"
},
"devDependencies": {
"babel-core": "6.21.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.10",
"babel-plugin-transform-react-jsx": "6.8.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-polyfill": "6.20.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-2": "6.18.0",
"chai": "3.5.0",
"chai-subset": "1.3.0",
"classnames": "2.2.5",
"css-loader": "0.26.1",
"del": "2.2.2",
"eslint": "3.12.2",
"eslint-plugin-react": "6.8.0",
"exports-loader": "0.6.3",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-plumber": "1.1.0",
"gulp-util": "3.0.7",
"gulp-watch": "4.3.11",
"mocha": "3.2.0",
"nightmare": "2.9.0",
"preact": "7.1.0",
"sinon": "1.17.6",
"stream-combiner2": "1.1.1",
"style-loader": "0.13.1",
"webpack": "2.1.0-beta.27"
},
"keywords": [
"webpack",
"bundle",
"analyzer",
"modules",
"size",
"interactive",
"chart",
"treemap",
"zoomable",
"zoom"
]
}