A "simple" Snake, done as my final JS class project back in DUT
https://snek.s.codinget.me
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
415 B
21 lines
415 B
5 years ago
|
{
|
||
|
"name": "snek",
|
||
|
"version": "1.0.0",
|
||
|
"description": "A simple Snake",
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"build": "make",
|
||
|
"start": "node index.js",
|
||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git@ssh.gitdab.com:Codinget/Snek.git"
|
||
|
},
|
||
|
"author": "Codinget",
|
||
|
"license": "MIT",
|
||
|
"dependencies": {
|
||
|
"express": "^4.17.1"
|
||
|
}
|
||
|
}
|