UNPKG

dynatron

Version:

The most advanced ORM for AWS DynamoDB

92 lines (91 loc) 2.35 kB
{ "name": "dynatron", "version": "8.0.1", "description": "The most advanced ORM for AWS DynamoDB", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "lint": "eslint './src/**/*.{js,ts,tsx}'", "test": "npx jest --forceExit", "test:watch": "jest --watchAll", "build": "rm -rf ./dist && webpack", "watch": "rm -rf ./dist && webpack -w", "start": "npm link && nodemon", "semantic-release": "semantic-release" }, "repository": { "type": "git", "url": "https://github.com/93v/dynatron.git" }, "keywords": [ "Advanced DynamoDB ORM", "AWS DynamoDB", "AWS Lambda", "DocumentClient", "DynamoDB ORM for AWS", "DynamoDB ORM", "DynamoDB", "Dynatron", "ORM for DynamoDB", "ORM", "Serverless" ], "author": { "name": "Cyber Labs", "email": "dynatron@cyberlabs.am" }, "license": "ISC", "bugs": { "url": "https://github.com/93v/dynatron/issues" }, "homepage": "https://dynatron.cyberlabs.am", "husky": { "hooks": { "pre-commit": "npm run lint && npm test", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-push": "npm run lint && npm test" } }, "files": [ "dist/**/*", "types/**/*" ], "devDependencies": { "@commitlint/cli": "^17.4.4", "@commitlint/config-conventional": "^17.4.4", "@types/async-retry": "^1.4.5", "@types/jest": "^29.4.0", "@types/node": "^18.13.0", "@typescript-eslint/eslint-plugin": "^5.52.0", "@typescript-eslint/parser": "^5.52.0", "eslint": "^8.34.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-unicorn": "^45.0.2", "husky": "^8.0.3", "nock": "^13.3.0", "nodemon": "^2.0.20", "prettier": "^2.8.4", "semantic-release": "^20.1.0", "terser-webpack-plugin": "^5.3.6", "ts-jest": "^29.0.5", "ts-loader": "^9.4.2", "ts-node": "^10.9.1", "typescript": "^4.9.5", "webpack": "^5.75.0", "webpack-cli": "^5.0.1", "webpack-node-externals": "^3.0.0" }, "peerDependencies": { "@aws-sdk/client-dynamodb": "^3.272.0", "@aws-sdk/node-http-handler": "^3.272.0" }, "dependencies": { "@aws-sdk/util-dynamodb": "^3.272.0", "@supercharge/promise-pool": "^2.4.0", "async-retry": "^1.3.3" }, "volta": { "node": "18.14.1", "npm": "9.5.0" } }