forked from hughsk/disc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.08 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
{
"name": "@citation-js/browserify-disc",
"version": "1.3.5",
"description": "Updated fork of hughsk/disc: 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-mocha-reporter spec"
},
"homepage": "https://github.com/citation-js/browserify-disc#readme",
"repository": {
"type": "git",
"url": "git://github.com/citation-js/browserify-disc.git"
},
"bin": {
"discify": "bin/discify"
},
"author": "Lars Willighagen (https://larsgw.github.io/)",
"contributors": [
"Hugh Kennedy <[email protected]> (http://hughskennedy.com/)"
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"@citation-js/hughsk-file-tree": "^2.0.0",
"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",
"map-async": "^0.1.1",
"opener": "^1.3.0",
"optimist": "^0.5.2",
"plucker": "0.0.0",
"through": "^2.3.4",
"uniq": "^1.0.0"
},
"devDependencies": {
"autoprefixer": "^10.4.4",
"browserify": "^17.0.0",
"domready": "^1.0.4",
"marked": "^4.0.14",
"postcss": "^8.4.12",
"postcss-clean": "1.2.0",
"postcss-url": "^10.1.3",
"prettysize": "0.0.3",
"tap-mocha-reporter": "^5.0.3",
"tape": "^5.5.3",
"uglify-js": "^2.4.15"
},
"keywords": [
"analyze",
"analytics",
"directory",
"file",
"modules",
"tree",
"tool",
"browserify",
"size",
"structure",
"visualize"
]
}