AkashBabu/mongo-unwind

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "mongo-unwind",
  "version": "2.1.1",
  "description": "unwind an array in an object just like $unwind in mongodb aggregation query",
  "main": "index.js",
  "scripts": {
    "_test": "mocha test.js",
    "_test:exit": "npm run _test -- --exit",
    "test": "export NODE_ENV=test && npm run _test:exit",
    "test:dev": "export NODE_ENV=test &&  npm run _test -- -w",
    "test:grep": "export NODE_ENV=test &&  npm run _test -- -g ",
    "coverage": "export NODE_ENV=test && nyc -- npm run _test:exit",
    "lint": "eslint --config .eslintrc src/index.js",
    "benchmark": "radargun benchmark/**/*.bench.js",
    "status": "git status",
    "prettify": "prettier --write index.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AkashBabu/mongo-unwind.git"
  },
  "engines": {
    "node": ">=7.0.0"
  },
  "keywords": [
    "unwind",
    "array",
    "object",
    "unwrap",
    "array"
  ],
  "precommit": [
    "prettify",
    "lint",
    "coverage",
    "benchmark",
    "status"
  ],
  "author": "akashbabu",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/AkashBabu/mongo-unwind/issues"
  },
  "homepage": "https://github.com/AkashBabu/mongo-unwind#readme",
  "devDependencies": {
    "babel-eslint": "^10.0.1",
    "chai": "^4.1.2",
    "deep-equal": "^1.0.1",
    "eslint": "^3.19.0",
    "eslint-config-airbnb": "^14.1.0",
    "eslint-plugin-class-property": "^1.0.6",
    "eslint-plugin-import": "^2.12.0",
    "eslint-plugin-jsx-a11y": "^4.0.0",
    "eslint-plugin-mocha": "^5.0.0",
    "eslint-plugin-node": "^6.0.1",
    "eslint-plugin-react": "^6.9.0",
    "mocha": "^5.2.0",
    "nodemon": "^1.18.3",
    "nyc": "^12.0.2",
    "pre-commit": "^1.2.2",
    "radargun": "^1.0.1",
    "rimraf": "^2.6.2"
  },
  "dependencies": {}
}