jluchiji/mongo-stash

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "mongo-stash",
  "description": "Transparent caching for MongoDB collections",
  "version": "1.3.2",
  "homepage": "https://github.com/ricepo/mongo-stash",
  "author": {
    "name": "Denis Luchkin-Zhou",
    "email": "wyvernzora@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/ricepo/mongo-stash.git"
  },
  "bugs": {
    "url": "https://github.com/ricepo/mongo-stash/issues"
  },
  "files": [
    "lib"
  ],
  "license": "MIT",
  "main": "lib/index.js",
  "engines": {
    "node": ">=4.1.0",
    "npm": ">=2.14.0"
  },
  "scripts": {
    "test": "./node_modules/.bin/gulp coverage:report",
    "prepublish": "./node_modules/.bin/gulp rebuild"
  },
  "dependencies": {
    "bson-objectid": "^1.1.4",
    "debug": "^2.2.0",
    "lodash": "^4.6.1",
    "lru-cache": "^4.0.0",
    "rolling-stats": "^0.1.1"
  },
  "devDependencies": {
    "app-root-path": "^1.0.0",
    "babel-core": "^6.4.0",
    "babel-eslint": "^6.0.0",
    "babel-plugin-transform-flow-strip-types": "^6.3.15",
    "babel-preset-es2015-node4": "^2.0.2",
    "babel-preset-stage-3": "^6.3.13",
    "bluebird": "^3.1.5",
    "chai": "^3.4.1",
    "chai-as-promised": "^5.1.0",
    "chai-properties": "^1.2.1",
    "del": "^2.0.2",
    "eslint": "^2.2.0",
    "eslint-config-airbnb": "^6.0.2",
    "eslint-plugin-ava": "^3.0.0",
    "eslint-plugin-babel": "^3.0.0",
    "eslint-plugin-react": "^4.1.0",
    "express-mocks-http": "0.0.11",
    "gulp": "^3.9.0",
    "gulp-babel": "^6.1.2",
    "gulp-changed": "^1.3.0",
    "gulp-codeclimate-reporter": "^1.2.0",
    "gulp-concat": "^2.6.0",
    "gulp-declare": "^0.3.0",
    "gulp-eslint": "^2.0.0",
    "gulp-handlebars": "^4.0.0",
    "gulp-istanbul": "^0.10.0",
    "gulp-istanbul-enforcer": "^1.0.3",
    "gulp-jsinspect": "^2.0.0",
    "gulp-mocha": "^2.1.3",
    "gulp-notify": "^2.2.0",
    "gulp-sourcemaps": "^1.5.2",
    "gulp-util": "^3.0.7",
    "gulp-wrap": "^0.11.0",
    "isparta": "^4.0.0",
    "merge-stream": "^1.0.0",
    "mocha": "^2.2.5",
    "mongodb": "^2.1.7",
    "shortid": "^2.2.4",
    "sinon": "^1.15.4",
    "sinon-chai": "^2.8.0"
  },
  "keywords": [],
  "babel": {
    "auxiliaryCommentBefore": "istanbul ignore next",
    "presets": [
      "es2015-node4",
      "stage-3"
    ],
    "plugins": [
      "transform-flow-strip-types"
    ]
  },
  "flowConfig": {
    "all": true
  },
  "jsInspectConfig": {
    "threshold": 25,
    "suppress": 0
  },
  "eslintConfig": {
    "root": true,
    "extends": "airbnb/base",
    "parser": "babel-eslint",
    "rules": {
      "strict": 0,
      "new-cap": 0,
      "no-undef": 2,
      "no-shadow": 1,
      "id-length": 0,
      "func-names": 0,
      "no-console": 1,
      "key-spacing": 0,
      "comma-dangle": [
        1,
        "never"
      ],
      "padded-blocks": 0,
      "no-multi-spaces": 0,
      "no-const-assign": 2,
      "no-param-reassign": 0,
      "object-curly-spacing": [
        2,
        "always"
      ],
      "array-bracket-spacing": [
        2,
        "always"
      ],
      "space-before-function-paren": [
        2,
        "never"
      ]
    },
    "ecmaFeatures": {
      "generators": true
    },
    "envs": {
      "node": true,
      "commonjs": true,
      "browser": false
    }
  }
}