basic files

This commit is contained in:
Asraelite 2016-03-21 12:35:36 +00:00
parent 6837d106be
commit 5205aa4f9b
4 changed files with 22 additions and 2 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
node_modules/

5
index.js Normal file
View file

@ -0,0 +1,5 @@
#!bin/node
var packageJson = require('./package.json');
console.log(`Starbugs version ${packageJson.version} running.`);

View file

@ -3,9 +3,20 @@
"version": "0.0.1",
"description": "Game or something",
"main": "index.js",
"repository": {
"type": "git",
"url": "bitbucket:Asraelite/starbugs"
},
"private": true,
"scripts": {
"test": "test.js"
"test": "node test.js"
},
"author": "Markus Scully <markusscully@gmail.com>",
"license": "ISC"
"license": "ISC",
"dependencies": {
"box2dweb": "^2.1.0-b",
"colors": "^1.1.2",
"express": "^4.13.4",
"socket.io": "^1.4.5"
}
}

3
test.js Normal file
View file

@ -0,0 +1,3 @@
#!bin/node
console.log('No tests to run');