UNPKG

1.89 kBJSONView Raw
1{
2 "name": "disc",
3 "version": "1.3.3",
4 "description": "A tool for analyzing the module tree of a browserify bundle or node project",
5 "main": "index.js",
6 "scripts": {
7 "prepublish": "mkdir -p build && npm run browserify && npm run rework && npm run bundle-demo",
8 "browserify": "browserify src/index.js | uglifyjs -c 2> /dev/null > build/bundle.js",
9 "bundle-demo": "node lib/bundle-demo > index.html",
10 "build-fixture": "browserify --full-paths ./test/fixture/index.js > ./test/fixture/bundle.js && browserify ./test/fixture/index.js > ./test/fixture/bundle-no-full.js",
11 "demo": "npm run prepublish && opener index.html",
12 "rework": "node lib/bundle-css > build/style.css",
13 "test": "node test | tap-spec"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git://github.com/hughsk/disc.git"
18 },
19 "bin": {
20 "discify": "bin/discify"
21 },
22 "author": "Hugh Kennedy <hughskennedy@gmail.com> (http://hughskennedy.com/)",
23 "license": "MIT",
24 "readmeFilename": "README.md",
25 "dependencies": {
26 "bl": "^1.2.0",
27 "browser-unpack": "^1.2.0",
28 "builtins": "0.0.3",
29 "commondir": "0.0.1",
30 "d3": "^3.4.3",
31 "duplexer": "^0.1.1",
32 "file-tree": "^1.0.0",
33 "flatten": "0.0.1",
34 "map-async": "^0.1.1",
35 "opener": "^1.3.0",
36 "optimist": "^0.6.1",
37 "plucker": "0.0.0",
38 "through": "^2.3.4",
39 "uniq": "^1.0.0"
40 },
41 "devDependencies": {
42 "autoprefixer": "^1.1.20140319",
43 "browserify": "^3.33.0",
44 "btoa": "^1.1.1",
45 "clean-css": "^2.1.6",
46 "domready": "^1.0.4",
47 "marked": "^0.3.2",
48 "prettysize": "0.0.3",
49 "rework": "^0.20.2",
50 "tap-spec": "^2.1.2",
51 "tape": "^3.0.3",
52 "uglify-js": "^2.4.15"
53 },
54 "keywords": [
55 "analyze",
56 "analytics",
57 "directory",
58 "file",
59 "modules",
60 "tree",
61 "tool",
62 "browserify",
63 "size",
64 "structure",
65 "visualize"
66 ]
67}