-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "hackchat-server",
"version": "2.3.4",
"description": "A module-based websocket relay server",
"main": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hack-chat/hackchat-server.git"
},
"engines": {
"node": ">= 14.10.0",
"npm": ">= 7.0.0"
},
"bin": {
"hc-config": "scripts/configure.js",
"hc-generate-cmd": "scripts/generate.js",
"hc-import": "scripts/import.js"
},
"scripts": {
"cov": "c8 report",
"cov:ls": "c8 report --reporter=text",
"cov:html": "c8 report --reporter=html && http-server ./.coverage",
"lint": "eslint --ignore-path .gitignore .",
"lintfix": "eslint --fix --ignore-path .gitignore .",
"report-coverage": "c8 report --reporter=text-lcov > coverage.lcov && codecov -t 5aede630-04ba-47df-b75f-020179a7236a",
"start": "node -r esm main.js",
"test": "npm run lint && c8 mocha --exit ./test/*.test.js"
},
"author": "Marzavec",
"license": "MIT",
"dependencies": {
"didyoumean2": "^4.2.0",
"enquirer": "^2.3.6",
"esm": "^3.2.25",
"fs-extra": "^10.0.0",
"ws": "^8.2.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.1.2",
"c8": "^7.6.0",
"chai": "^4.3.3",
"codecov": "^3.8.1",
"dotenv": "^8.2.0",
"eslint": "^7.20.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}