This repository was archived by the owner on Nov 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.37 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.37 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
{
"name": "@clusterws/server",
"version": "4.0.0-alpha.4",
"description": "Lightweight, fast and powerful framework for building scalable Node.js real-time applications.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Dmitrii Goriunov",
"scripts": {
"test": "nyc mocha './tests/**/*.test.ts' --exit",
"build": "rimraf ./dist && npm run lint && tsc && npm run copy",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"copy": "cpx ./src/index.d.ts ./dist"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ClusterWS/ClusterWS"
},
"dependencies": {
"@clusterws/cws": "^3.0.0",
"pino": "^6.5.1"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"chai": "^4.2.0",
"cpx": "^1.5.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.0.2",
"ws": "^7.3.1"
},
"nyc": {
"all": true,
"temp-directory": "./node_modules/.cache/nyc_output",
"include": [
"src/**/*.ts",
"tests/**/*.ts"
],
"exclude": [
"src/index.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
]
}
}