add node_modules to gitignore, add package.json
This commit is contained in:
parent
32aa004922
commit
80b7547cfa
2 changed files with 30 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -2,4 +2,5 @@
|
||||||
rsync.sh
|
rsync.sh
|
||||||
*.swp
|
*.swp
|
||||||
*.log
|
*.log
|
||||||
.monitor
|
.monitor
|
||||||
|
node_modules/
|
||||||
|
|
28
package.json
Normal file
28
package.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "scrumblr",
|
||||||
|
"description": "Web-based simulation of a physical agile sprint board that supports real-time collaboration.",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"repository": {
|
||||||
|
"url": "http://github.com/aliasaria/scrumblr"
|
||||||
|
},
|
||||||
|
"author": "Ali Asaria",
|
||||||
|
"main": "server.js",
|
||||||
|
"directories": {
|
||||||
|
"lib": "lib/"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "0.4.7"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"async": "0.1.x",
|
||||||
|
"connect": "1.7.x",
|
||||||
|
"redis-client": "0.3.x",
|
||||||
|
"redis": "0.6.x",
|
||||||
|
"sanitizer": "0.0.x",
|
||||||
|
"socket.io": "0.8.x",
|
||||||
|
"simplesets": "1.1.x",
|
||||||
|
"connect-redis":"1.0.x",
|
||||||
|
"express": "2.4.x",
|
||||||
|
"jade": "0.14.x"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue