-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.18 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.18 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
{
"name": "barehttp",
"version": "2.3.0",
"description": "Lightweight and fast Node.js web server",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "rm -rf ./lib && tsc -p tsconfig.build.json",
"build:dev": "rm -rf ./dev-lib && tsc -p tsconfig.dev.json",
"test": "jest --coverage",
"lint": "eslint ./src --fix",
"release": "semantic-release -e ./.releaserc.json"
},
"keywords": [
"nodejs",
"cloud",
"microservice",
"web",
"server",
"lightweight",
"fast"
],
"author": "Konstantin <29006524+sckv@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/sckv/barehttp.git"
},
"license": "MIT",
"dependencies": {
"ajv": "^8.17.1",
"callsites": "^4.2.0",
"cookie": "^1.1.1",
"cookie-signature": "^1.2.2",
"find-my-way": "^9.3.0",
"hyperid": "^3.3.0",
"lodash": "^4.17.21",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"source-map-support": "^0.5.21",
"ts-morph": "^27.0.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@ts-morph/bootstrap": "^0.28.1",
"@types/cookie": "^0.6.0",
"@types/cookie-signature": "^1.1.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@types/pino": "^7.0.4",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"axios": "^1.13.2",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.11.0",
"express": "^5.2.1",
"fastify": "^5.6.2",
"jest": "^30.2.0",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"bufferutil": "^4.1.0",
"utf-8-validate": "^6.0.6"
}
}