Skip to content

Commit

Permalink
package.json for easy management of dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Gilger <heipei@hackvalue.de>
  • Loading branch information
heipei committed May 21, 2013
1 parent 816da80 commit 39dba53
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.swp
README.html
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,9 @@ Forks

Setup
-----
* Install CoffeeScript
* Install node.js (tested with [0.10.7](http://nodejs.org/dist/v0.10.7/node-v0.10.7.tar.gz))
* In ```server/```
* ```npm install node-static@0.6.9```
* ```npm install socket.io@0.9.14```
* ```npm install validator@1.1.1```
* ```npm install```
* In ```server/coffee/```, copy ```config.coffee_example``` to ```config.coffee``` and fill in
your [hpfriends](http://hpfriends.honeycloud.net) credentials.
* ```make```
Expand Down
1 change: 1 addition & 0 deletions server/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
js
npm-debug.log
39 changes: 39 additions & 0 deletions server/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"name": "HoneyMap",
"preferGlobal": true,
"version": "0.0.1",
"author": "Mark Schloesser <ms@mwcollect.org>",
"description": "a real-time world map which visualizes attacks captured by honeypots of the Honeynet Project",
"contributors": [
{
"name": "Marak Schloesser",
"email": "ms@mwcollect.org"
},
{
"name": "Florian Weingarten",
"email": "flo@hackvalue.de"
},
{
"name": "Johannes Gilger",
"email": "jojo@hackvalue.de"
}
],
"repository": {
"type": "git",
"url": "https://github.com/fw42/honeymap.git"
},
"keywords": [
"http",
"server"
],
"dependencies" : {
"coffee-script" : "*",
"node-static" : "0.6.9",
"socket.io" : "0.9.14",
"validator" : "1.1.1"
},
"license": "MIT",
"engines": {
"node": ">=0.10"
}
}

0 comments on commit 39dba53

Please sign in to comment.