forked from foxssake/natty
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.29 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
45
46
47
48
49
50
51
52
{
"name": "@foxssake/noray",
"version": "1.4.3",
"description": "Online multiplayer orchestrator and potential game platform",
"main": "src/noray.mjs",
"bin": {
"noray": "bin/noray.mjs"
},
"scripts": {
"lint": "eslint --ext .mjs src",
"doc": "jsdoc -c .jsdoc.js src",
"test": "node --test test/spec/",
"test:e2e": "node --test test/e2e/ | node scripts/taplog.mjs utap \"pino-pretty -c\"",
"start": "node bin/noray.mjs | pino-pretty",
"start:prod": "NODE_ENV=production node bin/noray.mjs"
},
"keywords": [
"online",
"multiplayer",
"orchestrator",
"relay",
"nat"
],
"author": "Tamas Galffy",
"license": "MIT",
"repository": "github:foxssake/noray",
"homepage": "https://github.com/foxssake/noray",
"bugs": {
"url": "https://github.com/foxssake/noray/issues"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jsdoc": "^4.0.2",
"pino-pretty": "^10.0.0",
"sinon": "^15.0.4",
"utap": "^0.2.0"
},
"dependencies": {
"dotenv": "^16.0.3",
"nanoid": "^4.0.1",
"pino": "^8.11.0",
"prom-client": "^14.2.0"
},
"files": [
"src/*",
"bin/*"
]
}