-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.06 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
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
{
"name": "sockety",
"description": "Fast and secure TCP communication with multiplexing, focused on sending commands, streams and files",
"version": "0.0.0",
"license": "MIT",
"private": true,
"author": {
"name": "Dawid Rusnak",
"email": "[email protected]",
"url": "https://www.drcode.pl"
},
"engines": {
"node": ">=18"
},
"keywords": [
"socket",
"tcp",
"tls",
"net",
"stream",
"communication",
"protocol",
"realtime",
"real-time",
"events",
"client",
"server",
"ipc",
"api",
"transfer",
"rpc"
],
"files": [
"src/**/*.js",
"src/**/*.d.ts",
"index.js",
"index.d.ts"
],
"homepage": "https://github.com/sockety/sockety-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sockety/sockety-js.git"
},
"bugs": {
"url": "https://github.com/sockety/sockety-js/issues"
},
"scripts": {
"clean": "npm run clean --ws",
"build": "npm run build --ws",
"ts-check": "npm run ts-check --ws",
"lint": "npm run lint --ws",
"prepublishOnly": "npm run build",
"test": "jest"
},
"jest": {
"rootDir": "./packages",
"collectCoverageFrom": [
"**/*(*.)ts",
"!**/node_modules/**",
"!**/*(*.)d.ts",
"!**/fixtures/**/*(*.)ts"
],
"testMatch": [],
"testPathIgnorePatterns": [],
"projects": [
"<rootDir>/*"
]
},
"workspaces": [
"packages/*",
"packages/examples/*"
],
"overrides": {
"debug": "^4.3.4"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^18.0.6",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"jest": "^28.1.2",
"rimraf": "^3.0.2",
"tmp": "^0.2.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3"
}
}