forked from hughsk/colony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
{
"name": "colony",
"version": "0.0.7",
"main": "index.js",
"bin": {
"colony": "bin/colony"
},
"scripts": {
"test": "echo \"Sorry, no tests as of yet!\" && exit 1",
"pages": "rm -rf gh-pages; bin/colony ./index.js ./src/index.js -o gh-pages -r instructions.md -f hughsk/colony",
"prepublish": "(mkdir -p public/js || true); npm run browserify && npm run minify",
"browserify": "node_modules/.bin/browserify src/index.js -o public/js/colony.js",
"minify": "node_modules/.bin/uglifyjs public/js/colony.js > public/js/colony.min.js"
},
"license": "MIT",
"description": "In-browser network graphs representing the links between your Node.js code and its dependencies.",
"dependencies": {
"ejs": "~0.8.3",
"marked": "~0.2.5",
"reqursive": "0.0.6",
"highlight.js": "~7.2.0",
"async": "~0.1.22",
"optimist": "~0.3.4",
"wrench": "~1.3.9",
"debounce": "0.0.3"
},
"devDependencies": {
"debounce": "0.0.1",
"d3": "~2.10.1",
"browserify": "~1.16.1",
"uglify-js": "~1.3.3",
"mousetrap": "0.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/hughsk/colony.git"
},
"keywords": [
"code",
"visualisation",
"require",
"recursive",
"structure",
"codebase",
"visualization"
],
"author": "Hugh Kennedy <[email protected]> (http://hughskennedy.com/)"
}