{
  "name": "dynamodb-datamodel",
  "version": "0.2.7",
  "description": "DynamoDB single table design based model",
  "keywords": [
    "DynamoDB",
    "Single-Table-Model",
    "aws",
    "nosql",
    "serverless"
  ],
  "author": "Jason Christensen",
  "license": "MIT",
  "homepage": "https://github.com/JasonCraftsCode/dynamodb-datamodel",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/JasonCraftsCode/dynamodb-datamodel.git"
  },
  "bugs": {
    "url": "https://github.com/JasonCraftsCode/dynamodb-datamodel/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=8.0.0"
  },
  "sideEffects": false,
  "source": "src/index.ts",
  "types": "dist/index.d.ts",
  "main": "dist/index.js",
  "module": "dist/esm/index.js",
  "scripts": {
    "ncu": "ncu --dep prod,dev --reject typedoc",
    "ncu:update": "ncu --dep prod,dev -u --reject typedoc && npm install",
    "build": "tsc -P ./tsconfig.src.json",
    "build:esm": "tsc -P ./tsconfig.src.esm.json",
    "build:check": "tsc --noEmit -P ./tsconfig.src.json",
    "docs": "typedoc",
    "api": "api-extractor run",
    "api:update": "npm run build && api-extractor run --local --verbose",
    "docs:quality": "inchjs list --all",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "eslint .",
    "test": "jest --no-cache --rootDir ./",
    "test:coverage": "jest --no-cache --rootDir ./ --coverage",
    "pr": "npm run lint && npm run test:coverage && npm run build && npm run build:esm && npm run api && npm run docs",
    "prepare": "npm run build && npm run build:esm",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src && npm run docs && git add -A docs",
    "postversion": "git push && git push --tags"
  },
  "devDependencies": {
    "@microsoft/api-extractor": "^7.12.1",
    "@types/jest": "^26.0.19",
    "@types/node": "^14.14.16",
    "@typescript-eslint/eslint-plugin": "^4.11.0",
    "@typescript-eslint/parser": "^4.11.0",
    "aws-sdk": "^2.817.0",
    "dependency-cruiser": "^9.21.1",
    "eslint": "^7.16.0",
    "eslint-config-prettier": "^7.1.0",
    "eslint-plugin-jest": "^24.1.3",
    "eslint-plugin-jsdoc": "^30.7.9",
    "eslint-plugin-prefer-arrow": "^1.2.2",
    "eslint-plugin-tsdoc": "^0.2.10",
    "jest": "^26.6.3",
    "npm-check-updates": "^10.2.5",
    "prettier": "^2.2.1",
    "ts-jest": "^26.4.4",
    "ts-node": "^9.1.1",
    "typedoc": "0.17.0-3",
    "typescript": "^4.1.3"
  },
  "peerDependencies": {
    "aws-sdk": "^2.585.0"
  },
  "dependencies": {}
}
