thegameofcode/cipherlayer

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "cipherlayer",
  "version": "0.0.1",
  "description": "cipherlayer",
  "main": "src/cipherlayer.js",
  "scripts": {
    "test": "npm run lint && npm run test-unit && npm run test-acceptance",
    "test-unit": "mocha tests-unit --recursive",
    "test-acceptance": "cucumber.js tests-acceptance -f pretty --tags ~@ignore",
    "test-acceptance-only": "cucumber.js tests-acceptance -f pretty --tags @only",
    "lint": "eslint src tests-unit tests-acceptance main.js",
    "coverage-unit": "istanbul cover --root src --include-all-sources --lcovonly --dir ./coverage/unit _mocha -- tests-unit --recursive --reporter mocha-lcov-reporter",
    "coverage-acceptance": "istanbul cover --root src --include-all-sources --lcovonly --dir ./coverage/acceptance cucumber.js -- tests-acceptance --tags ~@ignore --format json",
    "coverage-merge": "istanbul-combine coverage/**/coverage.json",
    "coverage": "npm run coverage-unit && npm run coverage-acceptance && npm run coverage-merge",
    "coveralls": "istanbul-coveralls",
    "codeclimate": "codeclimate-test-reporter < ./coverage/lcov.info",
    "test-ci": "npm run lint && npm run test-unit-ci && npm run test-acceptance-ci",
    "test-unit-ci": "mocha tests-unit --recursive --reporter mocha-junit-reporter --reporter-options mochaFile=$CIRCLE_TEST_REPORTS/mocha/junit.xml",
    "test-acceptance-ci": "cucumber.js tests-acceptance --tags ~@ignore  --format json --out $CIRCLE_TEST_REPORTS/cucumber/tests.cucumber"
  },
  "dependencies": {
    "async": "^1.5.2",
    "aws-sdk": "^2.1.0",
    "bunyan": "^1.4.0",
    "ciphertoken": "^0.9.5",
    "countries-info": "^1.0.6",
    "escape-regexp": "0.0.1",
    "http-proxy": "^1.8.1",
    "jsonschema": "^1.0.0",
    "lodash": "^4.3.0",
    "mongodb": "^2.1.7",
    "passport": "^0.3.2",
    "passport-forcedotcom": "^0.1.1",
    "passport-google-oauth2": "^0.1.6",
    "passport-linkedin-oauth2": "^1.2.1",
    "randexp": "^0.4.2",
    "redis": "^2.4.2",
    "request": "^2.47.0",
    "restify": "^4.0.4",
    "version-control": "1.2.5"
  },
  "devDependencies": {
    "assert": "^1.1.2",
    "chai": "^3.5.0",
    "codeclimate-test-reporter": "^0.3.1",
    "coveralls": "^2.11.4",
    "cucumber": "^0.9.5",
    "eslint": "^2.2.0",
    "eslint-plugin-extra-rules": "^0.6.1",
    "istanbul": "^0.4.2",
    "istanbul-combine": "^0.3.0",
    "istanbul-coveralls": "^1.0.3",
    "mocha": "^2.0.1",
    "mocha-junit-reporter": "^1.9.1",
    "mocha-lcov-reporter": "^1.2.0",
    "mockery": "^1.4.0",
    "nock": "^7.2.2",
    "pre-commit": "^1.0.7",
    "sinon": "^1.12.2",
    "which": "^1.0.8"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/thegameofcode/cipherlayer.git"
  },
  "author": "luismesas",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/thegameofcode/cipherlayer/issues"
  },
  "homepage": "https://github.com/thegameofcode/cipherlayer",
  "pre-commit": [
    "lint"
  ]
}