nelsonic/esta

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "esta",
  "version": "4.2.0",
  "description": "The Simplest ElasticSearch Node.js Client",
  "main": "lib/index.js",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "quick": "./node_modules/tape/bin/tape ./test/*.js",
    "test": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js",
    "coverage": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js && ./node_modules/.bin/istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
    "jshint": "./node_modules/jshint/bin/jshint -c .jshintrc --exclude-path .gitignore .",
    "codeclimate": "CODECLIMATE_REPO_TOKEN=120a783703e4e63069dc63787b87900c306cc977b0f62d942b058bcbb9dd274c ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/dwyl/esta.git"
  },
  "engines": {
    "node": ">= 0.10"
  },
  "keywords": [
    "ElasticSearch",
    "Client",
    "Node",
    "Zero Dependencies"
  ],
  "author": "nelsonic <contact.nelsonic@gmail.com> (https://github.com/nelsonic)",
  "contributors": [
    {
      "name": "FilWisher"
    }
  ],
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/dwyl/esta/issues"
  },
  "homepage": "https://github.com/dwyl/esta",
  "devDependencies": {
    "chalk": "^1.1.3",
    "codeclimate-test-reporter": "^0.4.0",
    "istanbul": "^0.4.5",
    "jshint": "^2.8.0",
    "pre-commit": "^1.1.3",
    "tape": "^4.0.2"
  },
  "pre-commit": [
    "jshint",
    "coverage",
    "codeclimate"
  ]
}