-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
66 lines (66 loc) · 1.82 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
{
"name": "disc",
"version": "1.3.3",
"description": "A tool for analyzing the module tree of a browserify bundle or node project",
"main": "index.js",
"scripts": {
"prepublish": "mkdir -p build && npm run browserify && npm run rework && npm run bundle-demo",
"browserify": "browserify src/index.js | uglifyjs -c 2> /dev/null > build/bundle.js",
"bundle-demo": "node lib/bundle-demo > 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"
},
"repository": {
"type": "git",
"url": "git://github.com/hughsk/disc.git"
},
"bin": {
"discify": "bin/discify"
},
"author": "Hugh Kennedy <[email protected]> (http://hughskennedy.com/)",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"bl": "^1.2.0",
"browser-unpack": "^1.2.0",
"builtins": "0.0.3",
"commondir": "0.0.1",
"d3": "^3.4.3",
"duplexer": "^0.1.1",
"file-tree": "^1.0.0",
"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"
},
"devDependencies": {
"autoprefixer": "^1.1.20140319",
"browserify": "^3.33.0",
"btoa": "^1.1.1",
"clean-css": "^2.1.6",
"domready": "^1.0.4",
"marked": "^0.3.2",
"prettysize": "0.0.3",
"rework": "^0.20.2",
"tap-spec": "^2.1.2",
"tape": "^3.0.3",
"uglify-js": "^2.4.15"
},
"keywords": [
"analyze",
"analytics",
"directory",
"file",
"modules",
"tree",
"tool",
"browserify",
"size",
"structure",
"visualize"
]
}