UNPKG

@curveball/core

Version:

Curveball is a framework writting in Typescript for Node.js

88 lines (87 loc) 1.83 kB
{ "name": "@curveball/core", "version": "1.0.2", "description": "Curveball is a framework writting in Typescript for Node.js", "type": "module", "exports": "./dist/index.js", "homepage": "https://github.com/curveball/core#readme", "bugs": { "url": "https://github.com/curveball/core/issues" }, "keywords": [ "http", "framework", "nodejs", "typescript", "push" ], "author": "Evert Pot (https://evertpot.com/)", "license": "MIT", "scripts": { "prepublishOnly": "make build", "test": "make test", "lint": "make lint", "fix": "make fix", "tsc": "tsc", "start": "make start" }, "repository": { "type": "git", "url": "git+https://github.com/curveball/core.git" }, "dependencies": { "@types/ws": "^8.5.3", "raw-body": "^2.4.1", "ws": "^8.5.0" }, "peerDependencies": { "@curveball/kernel": "^1" }, "devDependencies": { "@curveball/http-errors": "^0.5.0", "@curveball/kernel": "^1.0.0", "@types/chai": "^5.0.1", "@types/co-body": "^6.1.0", "@types/mocha": "^10.0.1", "@types/node": "^18.19.6", "@types/node-fetch": "^2.5.8", "@types/sinon": "^17.0.3", "@typescript-eslint/eslint-plugin": "^6.18.1", "@typescript-eslint/parser": "^6.18.1", "chai": "^5.1.2", "eslint": "^8.6.0", "mocha": "^10.2.0", "node-fetch": "^3.3.0", "nyc": "^15.1.0", "sinon": "^17.0.1", "ts-node": "^10.4.0", "typescript": "^5.3.3" }, "engines": { "node": ">= 16" }, "files": [ "package.json", "README.md", "dist", "LICENSE", "src" ], "mocha": { "loader": [ "ts-node/esm" ], "recursive": true, "extension": [ "ts", "js", "tsx" ], "exit": true }, "nyc": { "extension": [ ".ts" ] } }