UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

222 lines (221 loc) 6.02 kB
{ "name": "serverless-spy", "homepage": "https://serverlessspy.com", "description": "CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.", "repository": { "type": "git", "url": "git@github.com:ServerlessLife/serverless-spy.git" }, "scripts": { "build": "scripts/run-task build", "bump": "scripts/run-task bump", "clobber": "scripts/run-task clobber", "compat": "scripts/run-task compat", "compile": "scripts/run-task compile", "docgen": "scripts/run-task docgen", "eslint": "scripts/run-task eslint", "package": "scripts/run-task package", "package-all": "scripts/run-task package-all", "package:js": "scripts/run-task package:js", "post-compile": "scripts/run-task post-compile", "post-upgrade": "scripts/run-task post-upgrade", "pre-compile": "scripts/run-task pre-compile", "release": "scripts/run-task release", "deploy-test": "scripts/run-task deploy-test", "deploy": "scripts/run-task deploy", "test": "scripts/run-task test", "test:update": "scripts/run-task test:update", "test:watch": "scripts/run-task test:watch", "unbump": "scripts/run-task unbump", "upgrade": "scripts/run-task upgrade", "watch": "scripts/run-task watch", "typecheck": "tsc --noEmit", "prepare": "husky install", "lint": "eslint **/*.ts", "lint-fix": "eslint --fix './**/*.ts'", "pretty": "prettier --write '**/*.ts'", "bundle-extension": "scripts/run-task bundle-extension", "cli": "scripts/run-task cli", "homepage": "bundle exec jekyll serve --watch" }, "author": { "name": "Marko (ServerlessLife.com)", "email": "marko@serverlesslife.com", "organization": false }, "devDependencies": { "@types/aws-iot-device-sdk": "^2.2.8", "@types/aws-lambda": "^8.10.130", "@types/aws4": "^1.11.6", "@types/jest": "^29.5.11", "@types/node": "^20.10.4", "@types/uuid": "^9.0.7", "@types/ws": "^8.5.12", "@typescript-eslint/eslint-plugin": "^6.12.0", "@typescript-eslint/parser": "^6.12.0", "aws-cdk-lib": "^2.168", "constructs": "^10", "esbuild": "^0.19.9", "esbuild-runner": "^2.2.2", "eslint": "^8.24.0", "eslint-config-prettier": "^8.5.0", "eslint-import-resolver-node": "^0.3.6", "eslint-import-resolver-typescript": "^3.5.1", "eslint-plugin-import": "^2.26.0", "eslint-plugin-prettier": "^4.2.1", "husky": "^8.0.1", "jest": "^29.7.0", "jsii": "^5.2.41", "jsii-diff": "^1.93.0", "jsii-docgen": "^10.2.5", "jsii-pacmak": "^1.93.0", "json-schema": "^0.4.0", "npm-check-updates": "^16", "prettier": "^2.7.1", "projen": "^0.77.6", "standard-version": "^9", "ts-jest": "^29.1.1", "ts-node": "^10.9.2", "typescript": "^5.3.3", "uuid": "^9.0.1" }, "workspaces": [ "test", "test/cdk", "cli" ], "peerDependencies": { "aws-cdk-lib": "^2.168", "constructs": "^10" }, "dependencies": { "@aws-cdk/aws-lambda-python-alpha": ">=2.168.0-alpha.0", "@aws-sdk/client-dynamodb": "^3.470.0", "@aws-sdk/client-eventbridge": "^3.470.0", "@aws-sdk/client-lambda": "^3.470.0", "@aws-sdk/client-s3": "^3.470.0", "@aws-sdk/client-sns": "^3.470.0", "@aws-sdk/client-sqs": "^3.470.0", "@aws-sdk/client-sts": "^3.470.0", "@aws-sdk/credential-providers": "^3.470.0", "@aws-sdk/lib-dynamodb": "^3.470.0", "@aws-sdk/types": "^3.178.0", "@aws-sdk/util-dynamodb": "^3.470.0", "aws-cdk-lib": "^2.168", "aws-iot-device-sdk": "^2.2.13", "aws4": "^1.12.0", "bootstrap": "^5.2.1", "bootstrap-icons": "^1.9.1", "caporal": "^1.4.0", "constructs": "^10", "json-format-highlight": "^1.0.4", "open": "^8.4.0", "serialize-error": "^11.0.3", "ws": "^8.17.1" }, "keywords": [ "cdk", "aws", "testing", "jest", "serverless", "spy", "vitest", "lambda", "sqs", "sns", "dynamodb", "eventbridge" ], "bin": { "sspy": "lib/cli/cli.js" }, "main": "lib/index.js", "exports": { "import": "./lib/index.mjs", "require": "./lib/index.js" }, "license": "MPL-2.0", "version": "2.3.9", "types": "lib/index.d.ts", "stability": "stable", "jsii": { "outdir": "dist", "targets": {}, "tsc": { "outDir": "lib", "rootDir": "src" } }, "overrides": { "@types/prettier": "2.6.0" }, "bundleDependencies": [ "@aws-sdk/credential-providers", "@aws-sdk/client-dynamodb", "@aws-sdk/client-eventbridge", "@aws-sdk/client-lambda", "@aws-sdk/client-s3", "@aws-sdk/client-sns", "@aws-sdk/client-sqs", "aws-iot-device-sdk", "@aws-sdk/lib-dynamodb", "@aws-sdk/util-dynamodb", "aws4", "@aws-sdk/types", "ws", "@aws-sdk/client-sts", "bootstrap", "bootstrap-icons", "caporal", "json-format-highlight", "open", "serialize-error" ], "jest": { "testMatch": [ "<rootDir>/src/**/__tests__/**/*.ts?(x)", "<rootDir>/(test|src)/**/*(*.)@(spec|test).ts?(x)" ], "clearMocks": true, "collectCoverage": true, "coverageReporters": [ "json", "lcov", "clover", "cobertura", "text" ], "moduleNameMapper": { "^aws-cdk-lib/.warnings.jsii.js$": "<rootDir>/node_modules/aws-cdk-lib/.warnings.jsii.js" }, "coverageDirectory": "coverage", "coveragePathIgnorePatterns": [ "/node_modules/" ], "testPathIgnorePatterns": [ "/node_modules/" ], "watchPathIgnorePatterns": [ "/node_modules/" ], "reporters": [ "default", [ "jest-junit", { "outputDirectory": "test-reports" } ] ], "transform": { "^.+\\.tsx?$": [ "ts-jest", { "tsconfig": "tsconfig.dev.json" } ] }, "preset": "ts-jest" } }