-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.75 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.75 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "enigma-bbs",
"version": "0.2.0-beta",
"description": "ENiGMA½ Bulletin Board System",
"author": "Bryan Ashby <bryan@l33t.codes>",
"license": "BSD-2-Clause",
"bin": {
"enigma-bbs": "./main.js",
"oputil": "./oputil.js"
},
"scripts": {
"start": "node main.js",
"oputil": "node ./oputil.js",
"pretty": "npx prettier --write .",
"prepare": "husky",
"test": "mocha 'test/**/*.test.js' --recursive --timeout 5000 --require test/setup.js"
},
"repository": {
"type": "git",
"url": "https://github.com/NuSkooler/enigma-bbs.git"
},
"homepage": "https://github.com/NuSkooler/enigma-bbs",
"bugs": {
"url": "https://github.com/NuSkooler/enigma-bbs/issues"
},
"keywords": [
"bbs",
"telnet",
"ssh",
"retro"
],
"dependencies": {
"@breejs/later": "4.2.0",
"add": "^2.0.6",
"async": "3.2.6",
"avatar-generator": "^2.0.4",
"binary-parser": "2.3.0",
"bunyan": "1.8.15",
"deepdash": "^5.3.9",
"easy-table": "^1.2.0",
"exiftool": "^0.0.3",
"fatfs": "^0.10.8",
"fatfs-volume-driver": "^0.0.4",
"follow-redirects": "^1.15.11",
"fs-extra": "11.3.4",
"glkote-term": "^0.4.4",
"glob": "^13.0.6",
"graceful-fs": "^4.2.11",
"hashids": "^2.3.0",
"hjson": "3.2.2",
"html-entities": "^2.6.0",
"http-signature": "^1.4.0",
"iconv-lite": "0.7.2",
"ifvms": "^1.1.6",
"ignore": "^7.0.5",
"ini-config-parser": "^1.0.4",
"inquirer": "^8.2.2",
"lodash": "4.18.1",
"lru-cache": "^11.3.3",
"mime-types": "3.0.2",
"minimist": "^1.2.8",
"moment": "2.30.1",
"nntp-server": "3.1.0",
"node-pty": "1.1.0",
"nodemailer": "^8.0.5",
"otplib": "11.0.1",
"qrcode-generator": "2.0.4",
"rlogin": "^1.0.0",
"sane": "5.0.1",
"sanitize-filename": "^1.6.3",
"better-sqlite3": "^12.8.0",
"ssh2": "1.17.0",
"string-strip-html": "8.4.0",
"systeminformation": "^5.27.10",
"telnet-socket": "0.2.4",
"temptmp": "^1.1.0",
"v86": "^0.5.319",
"ws": "8.20.0",
"yazl": "3.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"chai": "^5.3.3",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-json": "^4.0.1",
"globals": "^16.4.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"mocha": "^10.8.2",
"prettier": "2.8.1"
},
"engines": {
"node": ">=22"
}
}