UNPKG

fyrejet

Version:

Web Framework for node.js that strives to provide (almost) perfect compatibility with Express, while providing better performance, where you need it.

113 lines (112 loc) 2.96 kB
{ "name": "fyrejet", "version": "4.0.1", "description": "Web Framework for node.js that strives to provide (almost) perfect compatibility with Express, while providing better performance, where you need it.", "main": "index.js", "scripts": { "lint": "eslint .", "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/", "test-uWS": "UWS_SERVER_ENABLED_FOR_TEST=TRUE mocha --require test/support/env --reporter spec --bail --check-leaks test test/acceptance/ --exit", "postinstall": "node ./lib/tasks/postinstall.js" }, "repository": { "type": "git", "url": "git+https://github.com/fyrejet/fyrejet.git" }, "keywords": [ "express-like", "express", "connect", "uWebSockets.js", "http", "framework" ], "engines": { "node": ">=10.x" }, "author": "Nicholas Schamberg <schamberg.nicholas@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/fyrejet/fyrejet/issues" }, "files": [ "LICENSE.md", "README.md", "index.js", "lib/" ], "homepage": "https://github.com/fyrejet/fyrejet#readme", "dependencies": { "accepts": "~1.3.7", "array-flatten": "^1.1.1", "body-parser": "1.19.0", "clone": "^2.1.2", "content-disposition": "0.5.3", "content-type": "~1.0.4", "cookie": "^0.4.1", "cookie-signature": "^1.1.0", "debug": "^4.2.0", "depd": "^2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "express": "^4.17.1", "fast-decode-uri-component": "^1.0.1", "finalhandler": "~1.1.2", "fresh": "0.5.2", "lru-cache": "^6.0.0", "methods": "~1.1.2", "mnemonist": "^0.38.3", "on-change": "^3.0.2", "on-finished": "~2.3.0", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.5", "qs": "^6.9.4", "range-parser": "~1.2.1", "safe-buffer": "^5.2.1", "send": "0.17.1", "serve-static": "1.14.1", "setprototypeof": "^1.2.0", "statuses": "~1.5.0", "type-is": "~1.6.18", "uuid": "^8.3.1", "uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js/archive/refs/tags/v19.4.0.tar.gz", "vary": "~1.1.2" }, "devDependencies": { "0http": "^3.0.0", "after": "0.8.2", "connect-redis": "^5.0.0", "cookie-parser": "~1.4.4", "cookie-session": "^1.4.0", "ejs": "2.7.2", "eslint": "2.13.1", "express-session": "^1.17.1", "hbs": "^4.1.1", "marked": "^2.0.1", "method-override": "3.0.0", "mocha": "^8.2.0", "morgan": "^1.10.0", "multiparty": "4.2.2", "pbkdf2-password": "1.2.1", "should": "13.2.3", "standard": "^14.3.4", "supertest": "^5.0.0", "vhost": "~3.0.2" }, "eslintConfig": { "parserOptions": { "ecmaVersion": 2017 }, "env": { "es6": true } }, "standard": { "ignore": [ "/test/*", "/examples/*" ] } }