UNPKG

server

Version:

A modern and powerful server for Node.js

89 lines (88 loc) 2.42 kB
{ "name": "server", "version": "1.0.42", "description": "A modern and powerful server for Node.js", "homepage": "https://serverjs.io/", "repository": "https://github.com/franciscop/server.git", "bugs": "https://github.com/franciscop/server/issues", "funding": "https://www.paypal.me/franciscopresencia/19", "author": "Francisco Presencia <public@francisco.io> (https://francisco.io/)", "license": "MIT", "scripts": { "start": "node .", "dev": "grunt watch", "build": "grunt", "pretest": "cp .env.demo .env", "test": "jest --coverage --forceExit", "kill-comment": "Kill a process running in a specific port: PORT=3000 npm run kill", "kill": "kill $(lsof -t -i:$PORT) && echo '> KILLED!' || echo '> The port was already dead'" }, "keywords": [ "server", "node.js", "http", "websocket", "socket", "async" ], "main": "server.js", "directories": { "Documentation": "./docs/documentation", "Code": "./src", "Plugins": "./plugins", "Examples": "./examples" }, "engines": { "node": ">=10.0.0" }, "engineStrict": true, "dependencies": { "body-parser": "^1.20.2", "compression": "^1.7.4", "connect-redis": "^7.1.1", "cookie-parser": "^1.4.6", "csurf": "^1.11.0", "dotenv": "^16.4.5", "express": "^4.18.3", "express-session": "^1.18.0", "extend": "^3.0.2", "hbs": "^4.2.0", "helmet": "^7.1.0", "ioredis": "^5.3.2", "loadware": "^2.0.0", "method-override": "^3.0.0", "mz": "^2.7.0", "npmlog": "^7.0.1", "path-to-regexp": "^6.2.1", "pug": "^3.0.2", "response-time": "^2.3.2", "serve-favicon": "^2.5.0", "serve-index": "^1.9.1", "socket.io": "^4.7.4", "upload-files-express": "^0.4.0" }, "devDependencies": { "eslint": "^8.57.0", "eslint-plugin-jasmine": "^4.1.3", "grunt": "^1.6.1", "grunt-bytesize": "^0.2.0", "grunt-contrib-connect": "^4.0.0", "grunt-contrib-jshint": "^3.2.0", "grunt-contrib-pug": "^3.0.0", "grunt-contrib-watch": "^1.1.0", "grunt-sass": "^3.1.0", "jest": "^29.7.0", "jest-jasmine2": "^29.7.0", "jstransformer-marked": "^1.4.0", "picnic": "^7.1.0", "request-promises": "^1.1.0", "sass": "^1.71.1", "supertest": "^6.3.4" }, "jest": { "transformIgnorePatterns": [ "/node_modules/" ], "testRunner": "jest-jasmine2" } }