@serverless-seoul/dynamorm-stream
Version:
DynamoDB Stream Framework
80 lines (79 loc) • 2.09 kB
JSON
{
"name": "@serverless-seoul/dynamorm-stream",
"version": "2.0.0",
"description": "DynamoDB Stream Framework",
"main": "./dst/index.js",
"typings": "./dst/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/serverless-seoul/dynamorm-stream.git"
},
"keywords": [
"DynamoDB",
"AWS",
"Typescript",
"ORM",
"Serverless"
],
"bugs": {
"url": "https://github.com/serverless-seoul/dynamorm-stream/issues"
},
"homepage": "https://github.com/serverless-seoul/dynamorm-stream",
"scripts": {
"clean": "rm -rf dst",
"prebuild": "npm run clean",
"build": "tsc",
"pretest": "npm run build -- -p tsconfig.test.json",
"test": "AWS_REGION=us-east-1 AWS_ACCESS_KEY_ID=mock AWS_SECRET_ACCESS_KEY=mock mocha -t 20000 dst/**/__test__/**/*.js",
"test:ci": "npm run test -- --forbid-only",
"prepublishOnly": "npm run build",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"author": "@serverless-seoul",
"engines": {
"node": "^12.10.0"
},
"license": "ISC",
"devDependencies": {
"@catchfashion/commitlint-preset": "^1.0.3",
"@catchfashion/semantic-release-config": "^1.0.2",
"@catchfashion/tslint-preset": "^1.0.2",
"@serverless-seoul/dynamorm": "^2.11.0",
"@types/chai": "^4.2.14",
"@types/debug": "^4.1.5",
"@types/faker": "^5.1.6",
"@types/mocha": "^8.2.0",
"@types/node": "^12.19.15",
"aws-sdk": "^2.835.0",
"chai": "^4.2.0",
"faker": "^5.3.1",
"mocha": "^8.2.1",
"semantic-release": "^17.3.7",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"peerDependencies": {
"@serverless-seoul/dynamorm": "^2.0.0",
"aws-sdk": "^2.300.0",
"@types/node": ">= 12.10.0"
},
"dependencies": {
"@types/aws-lambda": "^8.10.71",
"debug": "^4.3.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@catchfashion/commitlint-preset"
]
}
}