-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.72 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.72 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
{
"name": "socketnaut",
"version": "1.6.22",
"description": "Scalable multithreaded Node.js servers made easy.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --build .",
"clean": "rm -rf ./dist/*",
"clean:build": "npm run clean && npm run build",
"watch": "tsc --watch",
"lint": "npx eslint .",
"format": "npx prettier --write .",
"format:lint": "npm run format && npm run lint",
"test": "npm update && npm run clean:build && npm update --prefix ./test && npm run clean:build:prep:start --prefix ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/far-analytics/socketnaut.git"
},
"author": "FAR",
"license": "MIT",
"bugs": {
"url": "https://github.com/far-analytics/socketnaut/issues"
},
"homepage": "https://github.com/far-analytics/socketnaut#readme",
"devDependencies": {
"@eslint/js": "^9.37.0",
"@stylistic/eslint-plugin": "^5.4.0",
"@types/node": "^20.11.28",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.38.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"dependencies": {
"@far-analytics/port-peer": "^1.0.0",
"streams-logger": "^3.0.0"
},
"engines": {
"npm": ">=10.1.0",
"node": ">=20.9.0"
},
"keywords": [
"api",
"cluster",
"concurrency",
"express",
"fastify",
"framework",
"hamsters.js",
"hapi",
"http",
"https",
"koa",
"multithreaded",
"multithreading",
"parallelism",
"pm2",
"proxy",
"router",
"scalable",
"server",
"thread",
"web",
"worker"
]
}