{
  "name": "dynamoose",
  "version": "1.2.0",
  "description": "Dynamoose is a modeling tool for Amazon's DynamoDB (inspired by Mongoose)",
  "typings": "./dynamoose.d.ts",
  "homepage": "https://github.com/dynamoosejs/dynamoose",
  "repository": {
    "type": "git",
    "url": "https://github.com/dynamoosejs/dynamoose"
  },
  "bugs": {
    "url": "https://github.com/dynamoosejs/dynamoose/issues"
  },
  "main": "index.js",
  "scripts": {
    "test": "grunt test",
    "coverage": "nyc grunt test"
  },
  "keywords": [
    "dynamodb",
    "dynamo",
    "mongoose",
    "aws",
    "amazon",
    "document",
    "model",
    "schema",
    "database",
    "data",
    "datastore",
    "query",
    "scan",
    "nosql",
    "db",
    "nosql",
    "store",
    "document store",
    "table",
    "json"
  ],
  "author": "Brandon Goode",
  "license": "MIT",
  "devDependencies": {
    "coveralls": "^3.0.0",
    "dynamodb-local": "0.0.22",
    "grunt": "^1.0.3",
    "grunt-contrib-jshint": "^2.0.0",
    "grunt-mocha-test": "^0.13.2",
    "mocha": "^5.2.0",
    "nyc": "^13.1.0",
    "should": "^13.2.3"
  },
  "dependencies": {
    "aws-sdk": "^2.367.0",
    "debug": "^4.1.0",
    "deep-equal": "^1.0.1",
    "hooks": "0.3.2",
    "object-path": "^0.11.4",
    "q": "^1.5.0"
  },
  "engines": {
    "node": ">=8.0.0"
  },
  "nyc": {
    "include": [
      "lib/**/*.js"
    ],
    "reporter": [
      "html",
      "text-summary"
    ],
    "check-coverage": true,
    "lines": 50,
    "statements": 50,
    "functions": 50,
    "branches": 50
  }
}
