UNPKG

2.34 kBJSONView Raw
1{
2 "name": "server",
3 "version": "1.0.32",
4 "description": "A modern and powerful server for Node.js",
5 "homepage": "https://serverjs.io/",
6 "repository": "https://github.com/franciscop/server.git",
7 "bugs": "https://github.com/franciscop/server/issues",
8 "funding": {
9 "url": "https://www.paypal.me/franciscopresencia/19"
10 },
11 "author": "Francisco Presencia <public@francisco.io> (https://francisco.io/)",
12 "license": "MIT",
13 "scripts": {
14 "start": "node .",
15 "dev": "grunt watch",
16 "build": "grunt",
17 "pretest": "cp .env.demo .env",
18 "test": "jest --coverage --forceExit",
19 "kill-comment": "Kill a process running in a specific port: PORT=3000 npm run kill",
20 "kill": "kill $(lsof -t -i:$PORT) && echo '> KILLED!' || echo '> The port was already dead'"
21 },
22 "keywords": [
23 "server",
24 "node.js",
25 "http",
26 "websocket",
27 "socket",
28 "async"
29 ],
30 "main": "server.js",
31 "directories": {
32 "Documentation": "./docs/documentation",
33 "Code": "./src",
34 "Plugins": "./plugins",
35 "Examples": "./examples"
36 },
37 "engines": {
38 "node": ">=10.0.0"
39 },
40 "engineStrict": true,
41 "dependencies": {
42 "body-parser": "^1.15.2",
43 "compression": "^1.6.2",
44 "connect-redis": "^3.3.0",
45 "cookie-parser": "^1.4.3",
46 "csurf": "^1.9.0",
47 "dotenv": "^8.2.0",
48 "express": "^4.14.0",
49 "express-data-parser": "^1.2.0",
50 "express-session": "^1.14.2",
51 "extend": "^3.0.0",
52 "hbs": "^4.1.0",
53 "helmet": "^3.9.0",
54 "loadware": "^2.0.0",
55 "log": "^1.4.0",
56 "method-override": "^3.0.0",
57 "mz": "^2.6.0",
58 "path-to-regexp": "^6.1.0",
59 "pug": "^3.0.0",
60 "response-time": "^2.3.2",
61 "serve-favicon": "^2.3.2",
62 "serve-index": "^1.8.0",
63 "socket.io": "^2.0.3"
64 },
65 "devDependencies": {
66 "eslint": "^4.7.2",
67 "eslint-plugin-jasmine": "^2.2.0",
68 "grunt": "^1.0.1",
69 "grunt-bytesize": "^0.2.0",
70 "grunt-contrib-connect": "^1.0.2",
71 "grunt-contrib-jshint": "^1.1.0",
72 "grunt-contrib-pug": "^1.0.0",
73 "grunt-contrib-watch": "^1.0.0",
74 "grunt-sass": "^3.1.0",
75 "jest": "^25.0.0",
76 "jstransformer-marked": "^1.0.2",
77 "node-sass": "^4.13.1",
78 "picnic": "^6.4.0",
79 "request-promises": "^1.0.1",
80 "supertest": "^3.0.0"
81 },
82 "jest": {
83 "transformIgnorePatterns": [
84 "/node_modules/"
85 ]
86 }
87}