basic files
This commit is contained in:
parent
6837d106be
commit
5205aa4f9b
4 changed files with 22 additions and 2 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
node_modules/
|
5
index.js
Normal file
5
index.js
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#!bin/node
|
||||||
|
|
||||||
|
var packageJson = require('./package.json');
|
||||||
|
|
||||||
|
console.log(`Starbugs version ${packageJson.version} running.`);
|
15
package.json
15
package.json
|
@ -3,9 +3,20 @@
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "Game or something",
|
"description": "Game or something",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "bitbucket:Asraelite/starbugs"
|
||||||
|
},
|
||||||
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "test.js"
|
"test": "node test.js"
|
||||||
},
|
},
|
||||||
"author": "Markus Scully <markusscully@gmail.com>",
|
"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
3
test.js
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!bin/node
|
||||||
|
|
||||||
|
console.log('No tests to run');
|
Loading…
Add table
Add a link
Reference in a new issue