UNPKG

server

Version:

A modern and powerful server for Node.js

77 lines (76 loc) 2.06 kB
{ "name": "server", "version": "1.0.21", "description": "A modern and powerful server for Node.js", "main": "server.js", "scripts": { "start": "node .", "dev": "grunt watch", "build": "grunt", "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'" }, "engines": { "node": ">=10.0.0" }, "engineStrict": true, "directories": { "Documentation": "./docs/documentation", "Code": "./src", "Plugins": "./plugins", "Examples": "./examples" }, "repository": { "type": "git", "url": "git+https://github.com/franciscop/server" }, "author": "Francisco Presencia <public@francisco.io>", "license": "MIT", "homepage": "https://serverjs.io/", "dependencies": { "body-parser": "^1.15.2", "compression": "^1.6.2", "connect-redis": "^3.3.0", "cookie-parser": "^1.4.3", "csurf": "^1.9.0", "dotenv": "^4.0.0", "express": "^4.14.0", "express-data-parser": "^1.2.0", "express-session": "^1.14.2", "extend": "^3.0.0", "hbs": "^4.0.5", "helmet": "^3.9.0", "loadware": "^2.0.0", "log": "^1.4.0", "method-override": "^2.3.10", "mz": "^2.6.0", "path-to-regexp": "^0.1.7", "pug": "^2.0.0-rc.4", "response-time": "^2.3.2", "serve-favicon": "^2.3.2", "serve-index": "^1.8.0", "socket.io": "^2.0.3" }, "devDependencies": { "eslint": "^4.7.2", "eslint-plugin-jasmine": "^2.2.0", "grunt": "^1.0.1", "grunt-bytesize": "^0.2.0", "grunt-contrib-connect": "^1.0.2", "grunt-contrib-jshint": "^1.1.0", "grunt-contrib-pug": "^1.0.0", "grunt-contrib-sass": "^1.0.0", "grunt-contrib-watch": "^1.0.0", "jest": "^25.0.0", "jstransformer-marked": "^1.0.2", "picnic": "^6.4.0", "request-promises": "^1.0.1", "supertest": "^3.0.0" }, "jest": { "transformIgnorePatterns": [ "/node_modules/" ] } }