-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "@foxssake/natty",
"version": "0.13.1",
"description": "Online multiplayer orchestrator and potential game platform",
"main": "src/natty.mjs",
"bin": {
"natty": "bin/natty.mjs"
},
"scripts": {
"lint": "eslint --ext .mjs src",
"doc": "jsdoc -c .jsdoc.js src",
"test": "node --test test/spec/ | utap",
"test:e2e": "node --test test/e2e/ | node scripts/taplog.mjs utap \"pino-pretty -c\"",
"start": "node bin/natty.mjs | pino-pretty"
},
"keywords": [],
"author": "Tamas Galffy",
"license": "MIT",
"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": {
"@elementbound/nlon": "^1.2.1",
"@elementbound/nlon-socket": "^1.2.1",
"ajv": "^8.12.0",
"dotenv": "^16.0.3",
"nanoid": "^4.0.1",
"pino": "^8.11.0"
}
}