-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "milliparsec",
"version": "5.0.1",
"description": "tiniest body parser in the universe",
"repository": {
"type": "git",
"url": "https://github.com/tinyhttp/milliparsec"
},
"author": "talentlessguy <[email protected]>",
"license": "MIT",
"types": "./dist/index.d.ts",
"type": "module",
"keywords": [
"body-parser",
"express",
"http",
"body-parsing"
],
"engines": {
"node": ">=20"
},
"exports": "./dist/index.js",
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@tinyhttp/app": "^2.4.0",
"@types/node": "^22.7.4",
"c8": "10.1.2",
"supertest-fetch": "^2.0.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"files": [
"dist"
],
"scripts": {
"test": "tsx --test test.ts",
"test:coverage": "c8 --include=src pnpm test",
"test:report": "c8 report --reporter=text-lcov > coverage.lcov",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm build && pnpm test",
"check": "biome check --write"
},
"packageManager": "[email protected]",
"publishConfig": {
"provenance": true
}
}