UNPKG

@curveball/kernel

Version:

Curveball is a framework writting in Typescript for Node.js

87 lines (86 loc) 1.78 kB
{ "name": "@curveball/kernel", "version": "1.0.0", "description": "Curveball is a framework writting in Typescript for Node.js", "type": "module", "exports": "./dist/index.js", "scripts": { "prepublishOnly": "make build", "test": "make test", "lint": "make lint", "fix": "make fix", "tsc": "tsc", "build": "make build" }, "repository": { "type": "git", "url": "git+https://github.com/curveball/kernel.git" }, "files": [ "package.json", "README.md", "dist", "LICENSE", "src" ], "keywords": [ "http", "framework", "nodejs", "typescript", "push", "curveball", "http2" ], "author": "Evert Pot (https://evertpot.com/)", "license": "MIT", "bugs": { "url": "https://github.com/curveball/kernel/issues" }, "homepage": "https://github.com/curveball/kernel#readme", "devDependencies": { "@types/accepts": "^1.3.5", "@types/chai": "^4.2.15", "@types/co-body": "^6.1.0", "@types/mocha": "^10.0.0", "@types/node-fetch": "^2.5.8", "@typescript-eslint/eslint-plugin": "^6.18.1", "@typescript-eslint/parser": "^6.18.1", "chai": "^5.0.0", "eslint": "^8.6.0", "mocha": "^10.0.0", "node-fetch": "^3.3.2", "nyc": "^15.1.0", "ts-node": "^10.4.0", "typescript": "^5.3.3" }, "nyc": { "extension": [ ".ts" ] }, "dependencies": { "@curveball/http-errors": "^0.5.0", "@types/ws": "^8.5.3", "accepts": "^1.3.7", "raw-body": "^2.4.1", "ws": "^8.5.0" }, "engines": { "node": ">=18" }, "mocha": { "require": [ "./test/polyfills.mjs" ], "loader": [ "ts-node/esm" ], "recursive": true, "extension": [ "ts", "js", "tsx" ] } }