-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "malibu",
"version": "1.0.6",
"description": "Framework-agnostic CSRF middleware",
"keywords": ["csrf", "middleware", "tokens", "framework agnostic", "express", "tinyhttp", "polka", "http"],
"author": "Reinaldy Rafli <aldy505@proton.me>",
"license": "MIT",
"type": "module",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"files": ["dist"],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "biome lint .",
"format": "biome format .",
"check": "biome check .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinyhttp/malibu"
},
"bugs": {
"url": "https://github.com/tinyhttp/malibu/issues"
},
"homepage": "https://github.com/tinyhttp/malibu#readme",
"directories": {
"test": "./test",
"lib": "./src"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.1",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@tinyhttp/app": "2.4.0",
"@tinyhttp/cookie-parser": "2.0.6",
"@types/express-session": "1.18.0",
"@types/node": "22.5.5",
"@vitest/coverage-v8": "2.1.1",
"express-session": "1.18.0",
"husky": "9.1.6",
"milliparsec": "4.0.0",
"supertest-fetch": "2.0.0",
"typescript": "5.6.2",
"vitest": "2.1.1"
},
"dependencies": {
"@tinyhttp/cookie": "2.1.1",
"@tinyhttp/cookie-signature": "2.1.1"
}
}