-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "crashndash-server",
"version": "1.6.0",
"description": "Multiplayer server for Crash n Dash",
"main": "index.js",
"dependencies": {
"body-parser": "^1.18.2",
"bunyan": "^1.8.1",
"express": "^4.14.0",
"kill-switch": "^2.0.0",
"redis": "^3.0.0",
"seed-random": "^2.2.0",
"toobusy-js": "^0.5.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"coveralls": "^3.0.0",
"istanbul": "^0.4.4",
"mocha": "^6.2.1",
"should": "^13.0.1",
"standard": "^11.0.0",
"supertest": "^4.0.0"
},
"scripts": {
"test": "standard . && mocha --exit",
"coverage": "istanbul cover -- _mocha --exit",
"deploy": "git pull && npm i && npm run kill",
"kill": "kill-switch",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/crashndash/server.git"
},
"author": "Eirik S. Morland <eirik@morland.no>",
"license": "MIT",
"directories": {
"test": "test"
},
"bugs": {
"url": "https://github.com/crashndash/server/issues"
},
"homepage": "https://github.com/crashndash/server"
}