44 lines
972 B
JSON
44 lines
972 B
JSON
|
{
|
||
|
"name": "milliparsec",
|
||
|
"version": "4.0.0",
|
||
|
"description": "tiniest body parser in the universe",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/tinyhttp/milliparsec"
|
||
|
},
|
||
|
"author": "talentlessguy <hi@v1rtl.site>",
|
||
|
"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.8.3",
|
||
|
"@types/node": "^20.14.9",
|
||
|
"c8": "10.1.2",
|
||
|
"supertest-fetch": "^2.0.0",
|
||
|
"tsm": "^2.3.0",
|
||
|
"typescript": "^5.5.3",
|
||
|
"uvu": "^0.5.6"
|
||
|
},
|
||
|
"files": [
|
||
|
"dist"
|
||
|
],
|
||
|
"publishConfig": {
|
||
|
"provenance": true
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "uvu -r tsm",
|
||
|
"test:coverage": "c8 --include=src pnpm test",
|
||
|
"test:report": "c8 report --reporter=text-lcov > coverage.lcov",
|
||
|
"build": "tsc -p tsconfig.build.json"
|
||
|
}
|
||
|
}
|