UNPKG

esrol

Version:

A wrapper of all Esrol server components for creating performance efficient, well structured (by following 'convention over configuration' approach), but also configurable, server-side applications.

60 lines (59 loc) 1.58 kB
{ "name": "", "description": "", "main": "app.js", "private": true, "author": "", "repository": { "type": "git", "url": "" }, "bugs": { "url": "" }, "version": "0.0.1", "licenses": "", "engines": { "node": ">= 4.0.0", "npm": ">= 3.3.6" }, "config": { "esrol": { "installed": false } }, "scripts": { "test": "node_modules/.bin/mocha ./tests/test", "coverage": "istanbul cover node_modules/mocha/bin/_mocha ./tests/test", "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", "app": "node_modules/grunt-cli/bin/grunt", "start": "node_modules/pm2/bin/pm2 startup && node_modules/pm2/bin/pm2 start app.js", "start-custom": "node_modules/pm2/bin/pm2 start ", "list": "node_modules/pm2/bin/pm2 list", "stop": "node_modules/pm2/bin/pm2 stop app.js", "stop-custom": "node_modules/pm2/bin/pm2 stop ", "delete": "node_modules/pm2/bin/pm2 delete app.js", "stop-all": "node_modules/pm2/bin/pm2 stop all" }, "devDependencies": { "coveralls": "^2.11.4", "chai": "^3.4.0", "debug": "^2.2.0", "grunt": "^0.4.5", "grunt-cli": "^0.1.13", "grunt-concurrent": "^2.1.0", "grunt-eslint": "^17.3.1", "grunt-force-task": "^1.0.0", "grunt-node-inspector": "^0.4.1", "grunt-nodemon": "^0.4.0", "istanbul": "^0.4.1", "mocha": "^2.3.3", "mocha-sinon": "^1.1.4", "sinon": "^1.17.2", "touch": "^1.0.0" }, "dependencies": { "esrol-server-app": "1.1.1", "pm2": "^0.15.10" } }