ehlo-io/ehlo

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "ehlo",
  "version": "0.0.9",
  "description": "SMTP server to rest",
  "main": "ehlo.js",
  "directories": {
    "test": "test"
  },
  "bin": {
    "ehlo": "cli.js"
  },
  "scripts": {
    "start": "./cli.js",
    "test": "NODE_ENV=test ./node_modules/.bin/mocha --colors -R spec --bail",
    "cover": "./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- test/*.js -R spec -t 5000",
    "codacy": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/codacy-coverage/bin/codacy-coverage.js",
    "coveralls": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- test/*.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ehlo-io/ehlo"
  },
  "keywords": [
    "SMTP",
    "rest",
    "ehlo",
    "API"
  ],
  "engines": {
    "node": ">=0.12"
  },
  "author": "OpenDena",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ehlo-io/ehlo/issues"
  },
  "homepage": "https://github.com/ehlo-io/ehlo",
  "dependencies": {
    "commander": "~2.8",
    "human-size": "~1.1",
    "mailparser": "~0.5",
    "request": "~2.60",
    "smtp-server": "~1.4",
    "stream-to-buffer": "~0.1",
    "winston": "~1.0"
  },
  "devDependencies": {
    "codacy-coverage": "~1.1",
    "coveralls": "~2.11",
    "istanbul": "~0.3",
    "mocha": "~2.2",
    "sinon": "~1.15",
    "smtp-connection": "~1.3"
  }
}