-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"name": "repo-starter",
"version": "0.0.0",
"type": "module",
"description": "description",
"homepage": "https://github.com/tinyhttp/repo#readme",
"repository": {
"type": "git",
"url": "https://github.com/tinyhttp/repo.git"
},
"engines": {
"node": ">=12.4 || 14.x || >=16"
},
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"keywords": [
"tinyhttp",
"node.js",
"web framework",
"web",
"backend"
],
"author": "v1rtl",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"lint": "biome lint .",
"format": "biome format .",
"check": "biome check .",
"build": "tsc -p tsconfig.build.json",
"prepare": "husky",
"test": "tsx --test tests/index.test.ts",
"test:coverage": "c8 --include=src pnpm test",
"test:report": "c8 report --reporter=text-lcov > coverage.lcov"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@tinyhttp/app": "2.4.0",
"@types/node": "^22.7.6",
"c8": "^10.1.2",
"husky": "^9.1.6",
"supertest-fetch": "^2.0.0",
"tsx": "^4.19.1",
"typescript": "~5.6.3"
},
"packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c"
}