-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 812 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "text-adventure",
"version": "1.0.0",
"description": "A text based adventure game that uses Node/Express as a back end, and Mongo DB as central repository for the game.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clockwerkz/text-adventure.git"
},
"keywords": [
"Adventure",
"Game",
"Co-VidGameJam"
],
"author": "clockwerkz, nerdiestMaxiumus",
"license": "ISC",
"bugs": {
"url": "https://github.com/clockwerkz/text-adventure/issues"
},
"homepage": "https://github.com/clockwerkz/text-adventure#readme",
"dependencies": {
"axios": "^1.2.2",
"express": "^4.17.3",
"mongoose": "^5.13.15"
}
}