-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
72 lines (72 loc) · 2.28 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
{
"name": "electrode-electrify",
"version": "3.0.0-0",
"description": "A tool based on D3.js for analyzing/visualizing webpack bundle/stats or electrode.io project",
"main": "index.js",
"scripts": {
"prepublish": "mkdir -p build && npm run browserify && npm run rework && npm run bundle-demo",
"browserify": "browserify src/index.js -t [ babelify --presets [ es2015 react ] ] | uglifyjs -c 2> /dev/null > build/bundle.js",
"bundle-demo": "node lib/bundle-demo /stats/electrode-app-stats.json > index.html",
"bundle-home": "node lib/bundle-home > index.html",
"build-fixture": "browserify --full-paths ./test/fixture/index.js > ./test/fixture/bundle.js && browserify ./test/fixture/index.js > ./test/fixture/bundle-no-full.js",
"demo": "npm run prepublish && opener index.html",
"rework": "node lib/bundle-css > build/style.css",
"test": "node test | tap-spec",
"start": "mkdir -p build && npm run browserify && npm run rework && npm run bundle-home && opener index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/electrode-io/electrode-electrify.git"
},
"bin": {
"electrify": "bin/electrify"
},
"author": "Arpan Nanavati <[email protected]>",
"license": "Apache 2.0",
"readmeFilename": "README.md",
"dependencies": {
"bl": "^0.7.0",
"browser-unpack": "^0.2.3",
"btoa": "^1.1.2",
"builtins": "0.0.3",
"commondir": "0.0.1",
"d3": "^3.4.3",
"duplexer": "^0.1.1",
"file-tree": "^1.0.0",
"flatten": "0.0.1",
"map-async": "^0.1.1",
"opener": "^1.3.0",
"optimist": "^0.6.1",
"plucker": "0.0.0",
"through": "^2.3.4",
"uniq": "^1.0.0",
"autoprefixer": "^1.1.20140319",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"clean-css": "^2.1.6",
"domready": "^1.0.4",
"jsdom": "^9.6.0",
"marked": "^0.3.2",
"prettysize": "0.0.3",
"rework": "^0.20.2",
"shelljs": "^0.7.4",
"tap-spec": "^2.1.2",
"tape": "^4.6.2",
"uglify-js": "^2.4.15"
},
"keywords": [
"elctrode",
"elctrodeio",
"elctrode-io",
"elctrode.io",
"analyze",
"webpack visualize",
"webpack analyze",
"webpack chart",
"size",
"structure",
"visualize"
]
}