-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 837 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
31
32
33
{
"name": "text-adventure-game-creator",
"version": "2.1.1",
"description": "A program that lets you create and play text adventure games.",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"test": "jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielVenable/text-adventure-game.git"
},
"author": "Daniel Venable",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanielVenable/text-adventure-game/issues"
},
"homepage": "https://github.com/DanielVenable/text-adventure-game#readme",
"dependencies": {
"jsonwebtoken": "8.5.1",
"cookie": "0.4.1",
"pg": "8.3.3",
"pg-format": "1.0.4"
},
"devDependencies": {
"dotenv": "8.2.0",
"jasmine": "3.6.4",
"jsdom": "16.4.0",
"colors": "1.4.0"
}
}