generated from tinyhttp/repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "@tinyhttp/unless",
"version": "3.0.0",
"author": "v1rtl",
"repository": {
"type": "git",
"url": "https://github.com/tinyhttp/unless.git"
},
"license": "MIT",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": "./dist/index.js",
"description": "Unless middleware for tinyhttp",
"engines": {
"node": ">=14.18 || >=16.20"
},
"files": [
"dist"
],
"homepage": "https://github.com/tinyhttp/unless#readme",
"keywords": [
"tinyhttp",
"node.js",
"web framework",
"web",
"backend",
"unless",
"middleware"
],
"scripts": {
"build": "tsc",
"test": "tsx tests/index.test.ts",
"test:coverage": "c8 tsx --test tests/index.test.ts",
"test:report": "c8 report --reporter=text-lcov > lcov.info",
"lint": "eslint . --ext=ts",
"format": "prettier --check \"./**/*.{ts,md}\"",
"format:fix": "prettier --write \"./**/*.{ts,md}\"",
"prepare": "husky install"
},
"dependencies": {
"@tinyhttp/router": "*"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"bun-types": "^1.0.7",
"c8": "^8.0.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"supertest-fetch": "^1.5.0",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
}
}