UNPKG

@chubbyjs/chubbyjs-framework

Version:

A minimal, highly performant middleware PSR-15 microframework built with as little complexity as possible, aimed primarily at those developers who want to understand all the vendors they use.

76 lines (75 loc) 1.88 kB
{ "name": "@chubbyjs/chubbyjs-framework", "version": "1.2.0", "description": "A minimal, highly performant middleware PSR-15 microframework built with as little complexity as possible, aimed primarily at those developers who want to understand all the vendors they use.", "keywords": [ "chubbyjs", "framework", "microframework", "micro framework", "middleware", "requesthandler", "psr-3", "psr-7", "psr-11", "psr-15", "psr-17" ], "author": "Dominik Zogg", "license": "MIT", "repository": "chubbyjs/chubbyjs-framework", "scripts": { "cs-fix": "prettier --write src tests", "cs": "prettier --check src tests", "test": "jest", "infection": "stryker run", "build": "tsc", "prepare": "rm -Rf dist && npm run build && npm run cs && npm run test" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "collectCoverageFrom": [ "src/**/*.ts" ], "coverageThreshold": { "global": { "lines": 100 } } }, "prettier": { "printWidth": 120, "tabWidth": 4, "singleQuote": true, "trailingComma": "all" }, "files": [ "dist" ], "engines": { "node": ">=12" }, "dependencies": { "@chubbyjs/psr-container": "^1.0.0", "@chubbyjs/psr-http-factory": "^1.1.0", "@chubbyjs/psr-http-message": "^1.2.1", "@chubbyjs/psr-http-server-handler": "^1.1.1", "@chubbyjs/psr-http-server-middleware": "^1.1.1", "@chubbyjs/psr-log": "^1.0.3", "@types/node": "^12" }, "devDependencies": { "@chubbyjs/chubbyjs-mock": "^1.1.1", "@stryker-mutator/core": "^5.3.0", "@stryker-mutator/jest-runner": "^5.3.0", "@types/jest": "^27.0.1", "jest": "^27.1.0", "prettier": "^2.4.0", "ts-jest": "^27.0.5", "typescript": "^4.4.2" }, "publishConfig": { "access": "public" } }