{
	"name": "middleware-io",
	"version": "2.8.1",
	"description": "Modern middleware with promises and status",
	"license": "MIT",
	"author": {
		"name": "Vladlen (Negezor)",
		"email": "negezor@gmail.com"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/negezor/middleware-io.git"
	},
	"homepage": "https://github.com/negezor/middleware-io#readme",
	"bugs": "https://github.com/negezor/middleware-io/issues",
	"keywords": [
		"typescript",
		"middleware",
		"compose",
		"ware",
		"promise",
		"async",
		"await",
		"modern",
		"es2015",
		"es6",
		"es7",
		"cjs",
		"esm",
		"js"
	],
	"files": [
		"lib"
	],
	"main": "./lib/index.js",
	"types": "./lib/index.d.ts",
	"exports": {
		".": {
			"types": "./lib/index.d.ts",
			"import": "./lib/index.mjs",
			"require": "./lib/index.js"
		}
	},
	"sideEffects": false,
	"engines": {
		"node": ">=12.0.0"
	},
	"devDependencies": {
		"@types/jest": "^29.0.3",
		"@types/node": "^18.7.18",
		"@typescript-eslint/eslint-plugin": "^5.38.0",
		"@typescript-eslint/parser": "^5.38.0",
		"benchmark": "^2.1.4",
		"eslint": "^8.23.1",
		"eslint-config-airbnb-base": "^15.0.0",
		"eslint-plugin-import": "^2.26.0",
		"jest": "^29.0.3",
		"rollup": "^2.79.0",
		"rollup-plugin-typescript2": "^0.34.0",
		"ts-jest": "^29.0.1",
		"typedoc": "^0.23.15",
		"typedoc-plugin-markdown": "^3.13.6",
		"typescript": "^4.8.3"
	},
	"scripts": {
		"prepare": "npm run rollup:build && npm run test",
		"build": "npm run rollup:build",
		"watch": "npm run rollup:watch",
		"clean": "rm -rf lib",
		"rollup:build": "rollup -c",
		"rollup:watch": "npm run rollup:build -- --watch",
		"test": "npm run test:jest && npm run lint",
		"test:bench": "node test/benchmark.bench.js",
		"test:jest": "jest --config jest.config.json --no-cache",
		"lint": "npm run lint:eslint",
		"lint:eslint": "eslint --ext .ts --ignore-path .gitignore src/**/*.ts",
		"docs:generate": "typedoc --theme markdown --out docs/api-reference --excludeExternals --readme none src"
	}
}
