-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 KB
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
{
"name": "browserify-webpack-stats",
"description": "output a webpack-style stats.json with browserify",
"version": "0.1.0",
"author": "Renée Kooi <renee@kooi.me>",
"bugs": {
"url": "https://github.com/goto-bus-stop/browserify-webpack-stats/issues"
},
"devDependencies": {
"standard": "^11.0.0",
"webpack-bundle-analyzer": "^2.11.1"
},
"homepage": "https://github.com/goto-bus-stop/browserify-webpack-stats",
"keywords": [
"analyzer",
"asset",
"assets",
"browserify",
"bundle",
"bundles",
"chunk",
"chunks",
"modules",
"pipeline",
"profile",
"stats",
"webpack"
],
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/goto-bus-stop/browserify-webpack-stats.git"
},
"scripts": {
"test": "standard && npm run analyze",
"analyze": "browserify index.js -p [ ./index.js stats.json ] -o bundle.js && webpack-bundle-analyzer stats.json"
},
"dependencies": {
"through2": "^2.0.3"
}
}