UNPKG

dynamoose

Version:

Dynamoose is a modeling tool for Amazon's DynamoDB (inspired by Mongoose)

85 lines (84 loc) 1.6 kB
{ "name": "dynamoose", "version": "1.5.2", "description": "Dynamoose is a modeling tool for Amazon's DynamoDB (inspired by Mongoose)", "typings": "./dynamoose.d.ts", "homepage": "https://dynamoosejs.com", "repository": { "type": "git", "url": "https://github.com/dynamoosejs/dynamoose" }, "bugs": { "url": "https://github.com/dynamoosejs/dynamoose/issues" }, "main": "index.js", "files": [ "index.js", "dynamoose.d.ts", "lib/*" ], "scripts": { "test": "grunt test", "lint": "eslint .", "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.2", "dynamodb-local": "0.0.24", "eslint": "5.13.0", "grunt": "1.0.3", "grunt-mocha-test": "0.13.3", "mocha": "5.2.0", "nyc": "13.1.0", "should": "13.2.3" }, "dependencies": { "aws-sdk": "2.395.0", "debug": "4.1.1", "deep-equal": "1.0.1", "hooks": "0.3.2", "object-path": "0.11.4", "q": "1.5.1" }, "engines": { "node": ">=8.0.0" }, "nyc": { "include": [ "lib/**/*.js" ], "reporter": [ "html", "text-summary" ], "check-coverage": true, "lines": 50, "statements": 50, "functions": 50, "branches": 50 } }