dynamodb-toolbox
Version:
A simple set of tools for working with Amazon DynamoDB and the DocumentClient.
94 lines (93 loc) • 2.73 kB
JSON
{
"name": "dynamodb-toolbox",
"description": "A simple set of tools for working with Amazon DynamoDB and the DocumentClient.",
"author": "Jeremy Daly <jeremy@jeremydaly.com>",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"type": "module",
"scripts": {
"test": "jest unit",
"test-cov": "jest unit --coverage",
"test-ci": "eslint . && jest unit --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test-types": "tsd",
"check-types": "tsc --noEmit",
"lint": "eslint .",
"build:cjs": "tsc -p tsconfig.cjs.json && echo '{ \"type\": \"commonjs\" }' > dist/cjs/package.json",
"build:esm": "tsc -p tsconfig.esm.json && echo '{ \"type\": \"module\" }' > dist/esm/package.json",
"build": "npm run build:cjs & npm run build:esm",
"prebuild": "rm -rf dist",
"prepublishOnly": "npm test && npm run lint && npm run test-types",
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline"
},
"license": "MIT",
"contributors": [
"ThomasAribart <thomasa@theodo.fr>",
"Naor Peled <me@naor.dev>"
],
"dependencies": {
"deep-copy": "^1.4.2",
"ts-toolbelt": "^9.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremydaly/dynamodb-toolbox.git"
},
"keywords": [
"serverless",
"aws",
"dynamodb",
"nosql"
],
"bugs": {
"url": "https://github.com/jeremydaly/dynamodb-toolbox/issues"
},
"homepage": "https://github.com/jeremydaly/dynamodb-toolbox#readme",
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"@aws-sdk/lib-dynamodb": "^3.0.0",
"@aws-sdk/client-dynamodb": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.1",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@aws-sdk/lib-dynamodb": "^3.287.0",
"@aws-sdk/client-dynamodb": "^3.287.0",
"@aws-sdk/util-dynamodb": "^3.287.0",
"coveralls": "^3.1.0",
"eslint": "^8.2.0",
"jest": "^29.2.2",
"prettier": "^2.2.1",
"ts-jest": "^29.0.3",
"tsd": "^0.23.0",
"typescript": "^4.1.3"
},
"files": [
"dist/cjs/index.*",
"dist/cjs/package.json",
"dist/cjs/constants.*",
"dist/cjs/classes/",
"dist/cjs/lib/",
"dist/esm/index.*",
"dist/esm/package.json",
"dist/esm/constants.*",
"dist/esm/classes/",
"dist/esm/lib/"
],
"version": "0.9.5"
}