{"_id":"serverless-step-functions-offline","_rev":"28-796a1c573932f79e9f458e50fad4722c","name":"serverless-step-functions-offline","time":{"modified":"2022-06-26T18:09:39.934Z","created":"2017-12-29T14:38:29.682Z","0.0.1":"2017-12-29T14:38:29.682Z","0.0.2":"2017-12-29T14:50:46.961Z","0.0.3":"2018-01-02T08:37:28.156Z","0.0.4":"2018-01-02T10:21:56.497Z","0.0.5":"2018-01-02T11:54:50.551Z","0.0.6":"2018-01-10T16:42:22.373Z","0.0.7":"2018-01-15T17:56:10.173Z","0.0.8":"2018-01-16T08:16:23.156Z","1.0.0":"2018-01-25T17:35:03.027Z","1.0.1":"2018-02-13T18:50:10.253Z","2.0.0-rc.1":"2018-02-26T19:37:17.798Z","2.0.0-rc.2":"2018-02-26T19:42:31.232Z","2.0.0-rc.3":"2018-02-26T19:47:51.259Z","2.0.0":"2018-02-26T19:49:29.815Z","2.0.1":"2018-03-05T18:55:03.971Z","2.1.0":"2018-11-20T17:15:08.738Z","2.1.1":"2018-11-22T11:18:20.451Z","2.1.2":"2018-11-28T16:11:20.801Z","2.1.3":"2019-11-15T16:27:57.793Z","2.1.4":"2019-11-15T16:43:46.345Z"},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"dist-tags":{"latest":"2.1.4"},"description":"Serverlesss plugin to support step function offline","readme":"[![serverless](http://public.serverless.com/badges/v3.svg)](http://www.serverless.com)\n[![npm version](https://badge.fury.io/js/serverless-step-functions-offline.svg)](https://badge.fury.io/js/serverless-step-functions-offline)\n[![Known Vulnerabilities](https://snyk.io/test/github/vkkis93/serverless-step-functions-offline/badge.svg?targetFile=package.json)](https://snyk.io/test/github/vkkis93/serverless-step-functions-offline?targetFile=package.json)\n[![Maintainability](https://api.codeclimate.com/v1/badges/b321644ef368976aee12/maintainability)](https://codeclimate.com/github/vkkis93/serverless-step-functions-offline/maintainability)\n[![NPM](https://nodei.co/npm/serverless-step-functions-offline.png)](https://nodei.co/npm/serverless-step-functions-offline/)\n\n# serverless-step-functions-offline\n:warning: Version 2.0 with breaking changes see [usage](#usage)  :warning:\n## Documentation\n\n- [Install](#install)\n- [Setup](#setup)\n- [Requirements](#requirements)\n- [Usage](#usage)\n- [Run plugin](#run-plugin)\n- [What does plugin support](#what-does-plugin-support)\n- [Usage with serverless-wepback](#usage-with-serverless-webpack)\n\n\n# Install\nUsing NPM:\n```bash\nnpm install serverless-step-functions-offline --save-dev\n```\nor Yarn:\n```bash\nyarn add serverless-step-functions-offline --dev\n```\n\n# Setup\nAdd the plugin to your `serverless.yml`:\n```yaml\n# serverless.yml\n\nplugins:\n  - serverless-step-functions-offline\n```\n\nTo verify that the plugin works, run this in your command line:\n```bash\nsls step-functions-offline\n```\n\nIt should rise an error like that:\n\n> Serverless plugin \"serverless-step-functions-offline\" initialization errored: Please add ENV_VARIABLES to section \"custom\"\n\n# Requirements\nThis plugin works only with [serverless-step-functions](https://github.com/horike37/serverless-step-functions).\n\nYou must have this plugin installed and correctly specified statemachine definition using Amazon States Language.\n\nExample of statemachine definition you can see [here](https://github.com/horike37/serverless-step-functions#setup).\n\n# Usage\nAfter all steps are done, need to add to section **custom** in serverless.yml the key **stepFunctionsOffline** with properties *stateName*: name of lambda function.\n\nFor example:\n\n```yaml\nservice: ServerlessStepPlugin\nframeworkVersion: \">=1.13.0 <2.0.0\"\nplugins:\n   - serverless-step-functions-offline\n\n# ...\n\ncustom:\n  stepFunctionsOffline:\n    FirstLambda: firstLambda #(v2.0)\n    # ...\n    # ...\n    SecondLambda: secondLambda #(v2.0)\n\nfunctions:\n    firstLambda:\n        handler: firstLambda/index.handler\n        name: TheFirstLambda\n    secondLambda:\n        handler: secondLambda/index.handler\n        name: TheSecondLambda\nstepFunctions:\n  stateMachines:\n    foo:\n      definition:\n        Comment: \"An example of the Amazon States Language using wait states\"\n        StartAt: FirstLambda\n        States:\n            FirstLambda:\n              Type: Task\n              Resource: arn:aws:lambda:eu-west-1:123456789:function:TheFirstLambda\n              Next: SecondLambda\n            SecondLambda:\n              Type: Task\n              Resource: arn:aws:lambda:eu-west-1:123456789:function:TheSecondLambda\n              End: true\n```\n\nWhere:\n- `StepOne` is the name of step in state machine\n- `firstLambda` is the name of function in section **functions**\n\n# Run Plugin\n```bash\nsls step-functions-offline --stateMachine={{name}} --event={{path to event file}}\n```\n\n- `name`: name of state machine in section state functions. In example above it's `foo`.\n- `event`: input values for execution in JSON format (optional)\n\nIf you want to know where you are (in offline mode or not) you can use env variable `STEP_IS_OFFLINE`.\n\nBy default `process.env.STEP_IS_OFFLINE = true`.\n\n# What does plugin support?\n| States | Support |\n| ------ | ------ |\n| ***Task*** | At this moment  plugin **does not support fields** *Retry*, *Catch*, *TimeoutSeconds*, *HeartbeatSeconds* |\n| ***Choice*** | All comparison operators except: *And*, *Not*, *Or* |\n| ***Wait***  | All following fields: *Seconds*, *SecondsPath*, *Timestamp*, *TimestampPath* |\n| ***Parallel*** |  Only *Branches* |\n| ***Pass*** | Result, ResultPath |\n| ***Fail***| Cause, Error|\n| ***Succeed***| |\n\n### Usage with serverless-webpack\n\nThe plugin integrates very well with [serverless-webpack](https://github.com/serverless-heaven/serverless-webpack).\n\nAdd the plugins `serverless-webpack` to your `serverless.yml` file and make sure that `serverless-webpack`\nprecedes `serverless-step-functions-offline` as the order is important:\n```yaml\n  plugins:\n    ...\n    - serverless-webpack\n    ...\n    - serverless-step-functions-offline\n    ...\n```\n\n### TODOs\n - [x] Support context object\n - [x] Improve performance\n - [x] Fixing bugs\n - [x] Support Pass, Fail, Succeed\n - [x] Integration with serverless-webpack\n - [ ] Add unit tests - to make plugin stable (next step)\n - [ ] Support fields *Retry*, *Catch*\n - [ ] Support other languages except node.js\n","versions":{"0.0.3":{"name":"serverless-step-functions-offline","version":"0.0.3","description":"# IMPORTANT: This plugin works only with runtime *node.js* and only with callback.It does not work with context object.","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":"","license":"ISC","dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.4","moment":"^2.19.2"},"gitHead":"f7166b370b6de8592e0a87a1125eb4851f7caad6","_id":"serverless-step-functions-offline@0.0.3","_shasum":"6113922de89e96679dfdcd9973797414d2028172","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"shasum":"6113922de89e96679dfdcd9973797414d2028172","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-0.0.3.tgz","integrity":"sha512-cZalR0/N1wL+FmrYu+MGLabDt5+uT89jN2V/SJx+NzSO0c1auG49zTeKEhMdf+nvRpetZT8njwaDnftnXgIlVg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEUcKKMXG5i3GaFXM3ULnGileIESy6UK95LvvauWWvViAiBLnWDNTyYdek/kxKUIVhzrDPIX/f8cuZANSy6Nr01f7w=="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline-0.0.3.tgz_1514882248048_0.07297192723490298"},"directories":{}},"0.0.4":{"name":"serverless-step-functions-offline","version":"0.0.4","description":"Serverlesss plugin to support step function offline","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["serverless","step functions","serverless-step-functions-offline"],"author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","license":"MIT","dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.4","moment":"^2.19.2"},"gitHead":"dc346bcbe6f4787b7c151599d57df6235e9e9e0a","_id":"serverless-step-functions-offline@0.0.4","_shasum":"edcc6557051795d4a8a4ffb948f21a0865d7f3fe","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"shasum":"edcc6557051795d4a8a4ffb948f21a0865d7f3fe","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-0.0.4.tgz","integrity":"sha512-S5wAdjvSnO64j4dOuuZTyUua9nePq1xhJfIns1qANQvSrXN57i7Vn8Sjr7d1I3wP7PGADK4KBpO30OyIUaVquQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDs8sDp08bwoPrNt8PJOItkRdc19XmA2BEPnd08p8RyqwIgYpdCJA5Gv5fn8/f5gSdBCmkkEgrMK+t5COP92LTrHyY="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline-0.0.4.tgz_1514888515625_0.37801775033585727"},"directories":{}},"0.0.5":{"name":"serverless-step-functions-offline","version":"0.0.5","description":"Serverlesss plugin to support step function offline","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["serverless","step functions","serverless-step-functions-offline"],"author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","license":"MIT","dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.4","moment":"^2.19.2"},"gitHead":"9758a2b1aa72901899e84bcf51e8cc99ec5cd589","_id":"serverless-step-functions-offline@0.0.5","_shasum":"3e77d0f99d72407fbdf1c6d8bd9e634afa62bb83","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"shasum":"3e77d0f99d72407fbdf1c6d8bd9e634afa62bb83","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-0.0.5.tgz","integrity":"sha512-YpmI5JZMpJ7W/4JReFJRWB5IlV2bm80m3o29k1pmzKIiDghwKDZimUg6TLikw7U4nojmrZG9wzJ0V7YKOyxqrw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICN3JbUES5jPEFcaC2SHu2tOaGtfeG6hQdOB2mfeoA3IAiEA9MOMW0715d8YgJqv+K/PQ/mzVMDTdk+qn/JzaaiZiK4="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline-0.0.5.tgz_1514894089630_0.08500426751561463"},"directories":{}},"0.0.6":{"name":"serverless-step-functions-offline","version":"0.0.6","description":"Serverlesss plugin to support step function offline","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["serverless","step functions","serverless-step-functions-offline"],"author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","license":"MIT","dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.4","moment":"^2.19.2"},"gitHead":"7153b2367f5ea71223d939047f6c5501e737fa3e","_id":"serverless-step-functions-offline@0.0.6","_shasum":"6fd3d19e9cd03911e3618b5135c509c2e4961523","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"shasum":"6fd3d19e9cd03911e3618b5135c509c2e4961523","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-0.0.6.tgz","integrity":"sha512-QUEsAsulLrX0CMzw6TgdfekWNbB7TRT7L/LQnlUfLQiwwc7/1NhZKxpza+4COeR/szjQDYwL2N9cAHM8ILoozg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDVzHD5QmytGvZkMAC5a/SBG3SUya7X0BIDUPXLPcNSAAiEAzqD+nO7CODRuDmrzt8Dhg7cLCS8IIBNFeugjFhtY6v0="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline-0.0.6.tgz_1515602541487_0.846935817040503"},"directories":{}},"0.0.8":{"name":"serverless-step-functions-offline","version":"0.0.8","description":"Serverlesss plugin to support step function offline","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["serverless","step functions","serverless-step-functions-offline"],"author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","license":"MIT","dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.4","moment":"^2.19.2"},"gitHead":"ecce41f1cebcc3957393a8a4d9fc7b9c5b82253f","_id":"serverless-step-functions-offline@0.0.8","_shasum":"a8567be246697a8fa19ffefa14204bf1171929a2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"shasum":"a8567be246697a8fa19ffefa14204bf1171929a2","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-0.0.8.tgz","integrity":"sha512-klVPHfteMjfNLnaus+OvkNExITZvEC/7J+cxv+HENgVOkb+dd5MEMbZeEwbv43aXpbmvzcKWA41PBxuoL6qpZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICw7woiZW56bfsDMakNlq7ciIC9iY4NSdkKIbEv4kqXcAiEAxAedNQD88KmpQQKF9kHHAehG4XXqAKQSWIbNWy4S9cQ="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline-0.0.8.tgz_1516090582249_0.5544463444966823"},"directories":{}},"1.0.0":{"name":"serverless-step-functions-offline","version":"1.0.0","description":"Serverlesss plugin to support step function offline","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"lint":"eslint ./**  --ext .js"},"keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","license":"MIT","dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.4","moment":"^2.20.1"},"devDependencies":{"pre-commit":"^1.1.3"},"pre-commit":["lint"],"gitHead":"ae2353be8d553d97c79e8069b1091b859a873cbe","_id":"serverless-step-functions-offline@1.0.0","_shasum":"51367afa1f6c8ceb3232663a39cf8f4506fe4496","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"shasum":"51367afa1f6c8ceb3232663a39cf8f4506fe4496","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-1.0.0.tgz","integrity":"sha512-SSgZlffYC1xnOyMIa476PKmPG3YhplAOSI4DQ5A8RMkixnr7KIxednnDFg7c5SEMkddetMGkqg+4Vhoyr84Svw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEXa/AaTUQvI0u8OK3Nt2JkpzmcZzxX/UmZJga0NazUTAiB1PnW9Ma1i6x2vu2Jx1pwOwn4hSAbJA2YkkHNovkm5qA=="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline-1.0.0.tgz_1516901702857_0.5311208036728203"},"directories":{}},"1.0.1":{"name":"serverless-step-functions-offline","version":"1.0.1","description":"Serverlesss plugin to support step function offline","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"lint":"eslint ./**  --ext .js"},"keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","license":"MIT","dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.4","moment":"^2.20.1"},"devDependencies":{"pre-commit":"^1.1.3"},"pre-commit":["lint"],"gitHead":"67392f9104ae874942a294ad61f61ed3c2f6503e","_id":"serverless-step-functions-offline@1.0.1","_shasum":"7de5c0c298ac5ac58fe157abd3cdc620d72b8a01","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"shasum":"7de5c0c298ac5ac58fe157abd3cdc620d72b8a01","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-1.0.1.tgz","fileCount":12,"unpackedSize":35512,"integrity":"sha512-0WvRB961bfcu/ALiQiqrSLxNus3MX+jAezvR9KH49SXRvNkHCgkMj7gBv4UAI0W+xqr7bfnvet/cHgl5q6x2dg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDxczCjjehLRAsBo6NDCmU2OlKn9c0BFpQaPAXxL3f9HwIgHsyHvead406b1R+12KulYBQBKiZiQzBb+HY8jJrGqUg="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline_1.0.1_1518547809598_0.17340591878942613"},"_hasShrinkwrap":false},"2.0.0-rc.1":{"name":"serverless-step-functions-offline","version":"2.0.0-rc.1","description":"Serverlesss plugin to support step function offline","main":"index.js","author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"nyc ./node_modules/mocha/bin/mocha  ./tests/index.test.js './tests/!(index).test.js'","lint":"eslint ./**  --ext .js"},"dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.4","moment":"^2.20.1"},"devDependencies":{"eslint":"^4.16.0","chai":"^4.1.2","mocha":"^5.0.0","nyc":"^11.4.1","pre-commit":"^1.1.3","serverless":"^1.25.0","sinon":"^4.2.1"},"nyc":{"include":["*.js"]},"pre-commit":["lint"],"keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"license":"MIT","gitHead":"14801fa71e99a89a397e0d95c49cd6db8d662247","_id":"serverless-step-functions-offline@2.0.0-rc.1","_shasum":"350161b6515052ce85b26f17fdef98a8bd8acafe","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"shasum":"350161b6515052ce85b26f17fdef98a8bd8acafe","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-2.0.0-rc.1.tgz","fileCount":19,"unpackedSize":159790,"integrity":"sha512-0EkFXcRnac9DV8Vs76KECaBfe1YydWl6BYWi69D5Sll1caqYkGd7cVurs9pEAmT23uX+2XjLPnzsazJWkwCmlw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFgKYH1oRyIk8gSnXqj87XMl/OMK0OWBNckDfzpwMwq7AiEAx/vjRAdT5RGSGUfXE0NYW325wdIyg5o4Y/zkBBLdrfs="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline_2.0.0-rc.1_1519673837717_0.8849160014538777"},"_hasShrinkwrap":false},"2.0.0-rc.2":{"name":"serverless-step-functions-offline","version":"2.0.0-rc.2","description":"Serverlesss plugin to support step function offline","main":"index.js","author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"nyc ./node_modules/mocha/bin/mocha  ./tests/index.test.js './tests/!(index).test.js'","lint":"eslint ./**  --ext .js"},"dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.4","moment":"^2.20.1"},"devDependencies":{"eslint":"^4.16.0","chai":"^4.1.2","mocha":"^5.0.0","nyc":"^11.4.1","pre-commit":"^1.1.3","serverless":"^1.25.0","sinon":"^4.2.1"},"nyc":{"include":["*.js"]},"pre-commit":["lint"],"keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"license":"MIT","gitHead":"14801fa71e99a89a397e0d95c49cd6db8d662247","_id":"serverless-step-functions-offline@2.0.0-rc.2","_shasum":"304583872789c8e7513cf2412f13568889d3e6b4","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"shasum":"304583872789c8e7513cf2412f13568889d3e6b4","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-2.0.0-rc.2.tgz","fileCount":19,"unpackedSize":159790,"integrity":"sha512-jQwHgIgPov7gvQ0ZjSFgw+sGkuxPK+G2Lq/HHssccFecAuRcYvSpRqWOC+29Dy6aT6w05g6445gdqKfjT/v1WA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCouLk3MOeGXw5/Esym+om3IYLWtwmWUdicFsm2HyEtZgIgWnRmsvgOB9LOCD93jB35cPcXQYiw3UXb6LpHO8udsig="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline_2.0.0-rc.2_1519674150703_0.9187849914832698"},"_hasShrinkwrap":false},"2.0.0-rc.3":{"name":"serverless-step-functions-offline","version":"2.0.0-rc.3","description":"Serverlesss plugin to support step function offline","main":"index.js","author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"nyc ./node_modules/mocha/bin/mocha  ./tests/index.test.js './tests/!(index).test.js'","lint":"eslint ./**  --ext .js"},"dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.4","moment":"^2.20.1"},"devDependencies":{"eslint":"^4.16.0","chai":"^4.1.2","mocha":"^5.0.0","nyc":"^11.4.1","pre-commit":"^1.1.3","serverless":"^1.25.0","sinon":"^4.2.1"},"nyc":{"include":["*.js"]},"pre-commit":["lint"],"keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"license":"MIT","gitHead":"63d58b5a6044961245f3aef9d49be636b9aae672","_id":"serverless-step-functions-offline@2.0.0-rc.3","_shasum":"b21028812c1aa699fef55440ee5b1952f3c0dc63","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"shasum":"b21028812c1aa699fef55440ee5b1952f3c0dc63","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-2.0.0-rc.3.tgz","fileCount":19,"unpackedSize":159790,"integrity":"sha512-ndvZioiny3RAHBR0IpOdvU4WTzRg34u0GgeCaVwrAhGst8JxZbDz75h6Dy+E2xDMMgDVHZW+n+kQYyfzlUiPRg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDCe67J5ldKuDa2P2aFGTvk6zPRUSJHKXXe5UAHMEWaqgIgZUExrV3oI3hqN+rSbGNHEOdki1Fa13FbPPyX7NPVF7g="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline_2.0.0-rc.3_1519674471141_0.11649643440139101"},"_hasShrinkwrap":false},"2.0.0":{"name":"serverless-step-functions-offline","version":"2.0.0","description":"Serverlesss plugin to support step function offline","main":"index.js","author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"nyc ./node_modules/mocha/bin/mocha  ./tests/index.test.js './tests/!(index).test.js'","lint":"eslint ./**  --ext .js"},"dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.4","moment":"^2.20.1"},"devDependencies":{"eslint":"^4.16.0","chai":"^4.1.2","mocha":"^5.0.0","nyc":"^11.4.1","pre-commit":"^1.1.3","serverless":"^1.25.0","sinon":"^4.2.1"},"nyc":{"include":["*.js"]},"pre-commit":["lint"],"keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"license":"MIT","gitHead":"63d58b5a6044961245f3aef9d49be636b9aae672","_id":"serverless-step-functions-offline@2.0.0","_shasum":"4ba864c0d577bb3cd9416fc23c6e1ed822caec82","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"shasum":"4ba864c0d577bb3cd9416fc23c6e1ed822caec82","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-2.0.0.tgz","fileCount":19,"unpackedSize":159785,"integrity":"sha512-0bwYfM30agCg87fmbDq7+Td0wqz4RVq4VbsKCGZl9mQ/Q/mA3JDVnvzzRbI/+/Ulut9HJkmPAzChRD51inoj/g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCIUmaalTwqEG7xTI+InDauLOHkdJuAL+0oJ0bfJZD4zwIgK1FrLbTviAScn7qdPqRSccHJtn0lKHrcvWauvl8CRUo="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline_2.0.0_1519674569672_0.22960946902987645"},"_hasShrinkwrap":false},"2.0.1":{"name":"serverless-step-functions-offline","version":"2.0.1","description":"Serverlesss plugin to support step function offline","main":"index.js","author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"nyc ./node_modules/mocha/bin/mocha  ./tests/index.test.js './tests/!(index).test.js'","lint":"eslint ./**  --ext .js"},"dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.4","moment":"^2.20.1"},"devDependencies":{"eslint":"^4.16.0","chai":"^4.1.2","mocha":"^5.0.0","nyc":"^11.4.1","pre-commit":"^1.1.3","serverless":"^1.25.0","sinon":"^4.2.1"},"nyc":{"include":["*.js"]},"pre-commit":["lint"],"keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"license":"MIT","gitHead":"3220ec45a76396b044f6ba977079aabacb1b550f","_id":"serverless-step-functions-offline@2.0.1","_shasum":"4d6a47ed09c3aa14b9ef749a7b8505f1a6ca0ad4","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"shasum":"4d6a47ed09c3aa14b9ef749a7b8505f1a6ca0ad4","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-2.0.1.tgz","fileCount":19,"unpackedSize":160284,"integrity":"sha512-bRaokUGKWejvyXvaHvVbuMVbtsSo5zleaqdkx/ZKjWA1iKMhAa8AFcZmkSukxCqbrJUYe4+4sYBsFh0Ak1bnsg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC5VyOvC63Wi0IbLcWY9II4bJACdSfKeoG2G3dC68uLRAIge/uWb3pj13n5NNGxUKVrlusM6PKrtUiG4lDpMCaAqHo="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline_2.0.1_1520276103874_0.6796207842050082"},"_hasShrinkwrap":false},"2.1.0":{"name":"serverless-step-functions-offline","version":"2.1.0","description":"Serverlesss plugin to support step function offline","main":"index.js","author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"nyc ./node_modules/mocha/bin/mocha  ./tests/index.test.js './tests/!(index).test.js'","lint":"eslint ./**  --ext .js"},"dependencies":{"bluebird":"^3.5.1","lodash":"4.17.11","moment":"^2.20.1"},"devDependencies":{"eslint":"4.17.11","chai":"^4.1.2","mocha":"^5.0.0","nyc":"^11.4.1","pre-commit":"^1.1.3","serverless":"^1.25.0","sinon":"^4.2.1"},"nyc":{"include":["*.js"]},"pre-commit":["lint"],"keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"license":"MIT","gitHead":"cb8b4c854b1fa2b398c5a20534ad11faf11150da","_id":"serverless-step-functions-offline@2.1.0","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"integrity":"sha512-eb3XgMFBMLmYREhHKrstMO8+PeB/YyFeow54o9tvVwDBUbUNln8ydVRLwtDRmBEbvhiN62pmVTufCib2gxJdQg==","shasum":"b6e2cda5bce6a2710a48273cc7398e7758f78db7","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-2.1.0.tgz","fileCount":18,"unpackedSize":158215,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9EEdCRA9TVsSAnZWagAAnJ0QAJa3F//kdXukhOr4+bZs\n5ZfSiyXypjjy0dyHpGla9brddjC70FmYi0vxiLWAIblAHHdP96q6+/+1/V6x\nG6C/A3JdGcCtZK2u7MShIyLX6KpU4JuEVz/et8oenF3lbhh7Nuuc/Wki8dks\nuo0Rh5b03ddLxwKrczjQ9Y5kpDGCV6anV8tK37gGcuSQLj+7iDJvzk93wzaZ\n3hSaiHeMWKAGb2CyiNfGiDJM41OtSNIXS721TMdkAWflRe5he0JKHMsCVxHG\ntezY8tiOh2d2ClM0ZHfC8ZO9N00FmPSYgww7WpNfeFFJRbhQtGRYOyvmMFn4\nJ9SOp1b+ser/s9qdsLKPeGqpO2oQyDOtn2DWkPsxgTNtpi+g7A/0q7E8dROC\nSiK7hovkfM0FydedSD32eHBm7HNLjJlCNRDane2b1yxGaeobuy5Dm2/R942V\nCL07E8z5wsYsbBfE5CysvPBVBqkMMfAUvabrSwErkWyDRIGy+7xLfyaj3FMe\nSjW0c33YVW0fNwZr67TRjqleHPcmf8PSCgBesWhUJtQE/qT9bNoius5YrjJV\n/MB40GAvl42XgI5dlHwr+aYSYB7w9XKR7LaXBOA0mWKmRpWoa1mHtSCRPWZC\nLFsqJwZDAKOY8OVK73J0OocY3Cl5W0NzEFJ1yNSDDxzME26hngeH00WJ78Oh\nsnOb\r\n=++GL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC4lFYmwJrTbMw3Zv7mTX9U+admDAtQ0y9/3r80lLjzZAiA5kOcj9fSUnuvus588yx4tVyFkE86YLO35Kv/Cgk5E7A=="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline_2.1.0_1542734108618_0.32882796842781303"},"_hasShrinkwrap":false},"2.1.1":{"name":"serverless-step-functions-offline","version":"2.1.1","description":"Serverlesss plugin to support step function offline","main":"index.js","author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"nyc ./node_modules/mocha/bin/mocha  ./tests/index.test.js './tests/!(index).test.js'","lint":"eslint ./**  --ext .js"},"dependencies":{"bluebird":"^3.5.1","lodash":"4.17.11","moment":"^2.20.1"},"devDependencies":{"eslint":"4.17.11","chai":"^4.1.2","mocha":"^5.0.0","nyc":"^11.4.1","pre-commit":"^1.1.3","serverless":"^1.25.0","sinon":"^4.2.1"},"nyc":{"include":["*.js"]},"pre-commit":["lint"],"keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"license":"MIT","gitHead":"9936d0a3a3ec7817aaef96fdeea1ce372557ad71","_id":"serverless-step-functions-offline@2.1.1","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"integrity":"sha512-dDdFtsrX6QfsmfPkYhDWa4YjngDEeCDbHHb0tjA/DXj1dMdfVXd2rqUgFvMZ3sKuU5oRiQf3jRFf6nxs8MoplQ==","shasum":"7175425b92b447e7b614892ee0f2e88934fb451f","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-2.1.1.tgz","fileCount":18,"unpackedSize":159483,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9pB8CRA9TVsSAnZWagAA6hQP/3frgT8RZi9iz8MmUw1Y\neLPqiUzkwfrUCe0AbgjeskD5nKaowHMGZazNy83unonwJCaVvbILzFOI6SEW\nDEGEfR6HbmAbwwiw7l0JlUQOUzd8c7BtsauyOIssjQkOgVGNVpvb76kioBDR\nKegBbODBmN0q4A0CfblM3pcfk/KYMUELOL5VKB9EEj0z3aMwo/QOAgCajsdP\nJdMTqVlD9LVyM8sEVlLK1Rvp5dYzS2A+jHMSzqKeyJIODsiuwfd8n/TR5jDS\n7lr1gZbugA/Br0xeN7k7ANI4GmXC00tgY9p0PCOzqvtp3Ta0TpF9O8ySzf3w\n2ylKDwxlwJ83qbn5XYqmk+YoABoHs06bBNOqn/lk/iiHLsQCUeKQVezIRWjS\nQfgrcB7x7GqIoMoKG2tu5n5olp1yolAWUvfpB+CHGmjx5PgoUifnWYo0lGuN\n5GgVrIPE/d75LvYfx3lwXGWnJydrkeL3Wn67Xqu0/zd9jV7sELRJyNNevhsu\n2FokByPs9B9PnUk0iXya7PWjDgRhBUptzAU64TnRMW0JEFv+PDF0d3i7gbLA\nkYDh1ZKzO8b8w0eSGnLwnkmYnW9Ux6oXxXJFgAj6uc7w7gFKUigHW6hw++vs\nIC8VTbR7/yiBMWj+PuD6OB8Sq4wWf0cvp7rL3p1UyPFBoxzJCcRJtfwpZnu2\n++VR\r\n=o7Ye\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGVFZpKJi9EYHTERU35bbfoekKHFWwGBAuSfyYJdiF9AIgDWCvU1467XeHZqPW8T0BIeajpYmnwynkcP+QkPzn7nA="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline_2.1.1_1542885500261_0.8797444446008489"},"_hasShrinkwrap":false},"2.1.2":{"name":"serverless-step-functions-offline","version":"2.1.2","description":"Serverlesss plugin to support step function offline","main":"index.js","author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"nyc ./node_modules/mocha/bin/mocha  ./tests/index.test.js './tests/!(index).test.js'","lint":"eslint ./**  --ext .js"},"dependencies":{"bluebird":"^3.5.1","lodash":"4.17.11","moment":"^2.20.1"},"devDependencies":{"eslint":"4.17.11","chai":"^4.1.2","mocha":"^5.0.0","nyc":"^11.4.1","pre-commit":"^1.1.3","serverless":"^1.25.0","sinon":"^4.2.1"},"nyc":{"include":["*.js"]},"pre-commit":["lint"],"keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"license":"MIT","gitHead":"07fba61b1de02fd54d0178e1129306e4bc60259d","_id":"serverless-step-functions-offline@2.1.2","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"integrity":"sha512-WKuUuLeiN7GOuRp7KJRM3ZEe4ILHGcONUfyx1DgANGfFMzLW4K9RFZjGzv+aW+h2jwqr9R51mj9hP8PE8Slwtw==","shasum":"b25ab44165c02bfb14fbae2b2d442db9af1d12ec","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-2.1.2.tgz","fileCount":18,"unpackedSize":159472,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/r4pCRA9TVsSAnZWagAABgUP/RB5eC3mXPiYDJSKlo78\nCCRIA2R4WGI6SoRYAd3JSG7Ni25vv+4wX4/B0dD+jiYkKyl+0SgmJzmXN6FA\nF5Xru215oTs63NvsAzgpcqcCfJDly7ib7aNaBYxQcQayowVOnb4FzAjORlfN\nO6G0+kBJNFQ255bfYeu5W3xSZbiKMD9f710NmXHzOnYh2SE963zf/vEFAMl/\n91G5atqUr8b/s6OghD0tamDKSiP2EUJ5Hd/isnd1XKaKTZC5TbN/HULPdTyE\nILYek+2DFsNLzqcvncOvZmxj7H1mayXc5K2rbGr6pN/0w85VbJDpy76rZdhp\newuDmLr0c4gHl0QYursyi9pzY1T2nXIu6uv1rbkEmIyGFIYEKkCVs9pZxsD8\nneWnQz6jFiozwQ35Pq7IlCIVzlUM1EP6LF5RL5GC+iy+DNhCkfyNlspDDiNP\ntlzgCkXdS1FdcvCIUatl4B95ABEh+W2c3l6yv6xD1rEe0jS7M5V2GsdwPPEM\nx1DrTS0j9HFF4OMNvF37RCY8puqsJyK0jvMZgAydV+muTbpkdK1zEMNSrOKt\nHEGPzjnojLqUZiENh1SWSM9D06qPG9Befgpgt75KfYlnQRnQ8d9miPHVG14q\nNN2q8MGxLh8nqs+dxEDuT4UYJPhrFmcCHe3atBqL+Iww8ZgEBlI1rqhWAYDA\nHv/K\r\n=xhCY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEeO7xBML3cRQoaO7anBe+Uo/+80MuQLUtJoomBJkwSmAiB3ntXpHP4SjRtOwTkwmac1+1ZjC7MNkbIOoWQurDsC0w=="}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline_2.1.2_1543421480696_0.19910414338150617"},"_hasShrinkwrap":false},"2.1.3":{"name":"serverless-step-functions-offline","version":"2.1.3","description":"Serverlesss plugin to support step function offline","main":"index.js","author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"nyc ./node_modules/mocha/bin/mocha  ./tests/index.test.js './tests/!(index).test.js'","lint":"eslint ./**  --ext .js"},"dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.15","moment":"^2.20.1"},"devDependencies":{"eslint":"4.17.11","chai":"^4.1.2","mocha":"^5.0.0","nyc":"^11.4.1","pre-commit":"^1.1.3","serverless":"^1.25.0","sinon":"^4.2.1"},"nyc":{"include":["*.js"]},"pre-commit":["lint"],"keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"license":"MIT","gitHead":"2ab8adb393122bd21f2316673bf2395abab629aa","_id":"serverless-step-functions-offline@2.1.3","_npmVersion":"6.4.1","_nodeVersion":"10.12.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"integrity":"sha512-rOEFVMhAqyRvwoWwnVXJvy3jTBejAp9vV6yH7xZF4t6LBH/V0fkjhIMoOFemcW0JPZioaiVODAQbFbXrvIrMXg==","shasum":"257f083a7999b9f854cf0db5a5ecaef5c09b401b","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-2.1.3.tgz","fileCount":18,"unpackedSize":160097,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdztIOCRA9TVsSAnZWagAAX7YP/0NvGAbT5Ghe/ieTezfx\n+UMqt3RgQ0rJZtJwMw32emiWmLVcYQwJhR7IcppXE3vdq5ZYkMRU6XcopPEJ\n7QP1wT14dKrOzCJaAwu6MbOeMAi+f5YIG4uZgsvfeSQ8DVtUebhZKTq+TDhX\n9eJ+28MhFP5aA/ti1nwS7tS0ESQ4MKB7YdCbWfFZsQ9nmqG9Ik6RP3XubE7Z\nfLQxbitMR6yX/ve5LqHhCokbjVhobRqkLL3+U9gH09EkkP99WpmHr1rpjGIo\nYi212yvdJVv7DRTdXu3OJLZLo8wIEvI0YvepfhFJxMFkYdNv8Tf2FHVksaRr\nK7dRSFju4HZPkmamokeB/ANi/WyWAlp3Jy+5IIA3wXiTHnYEOM6FKfuF8JSj\nMWrkj1zvK5wx03HRMdLWRCqumfHaOVKFSUXF07iBXut/qTED/K7XFiOnRYdc\n6EqcjzASVNTs5atz7gDDb10Y9hR8KIRqjk7/DXtamfr6lkyzGh+gp30D3cEv\n5fqyND87l/NybZgexJ0iLj7Ipv5CMXioQAolYZkgdWDLXXJ8dTr3bhAHso+B\nzp2kO7kZgvaV+r1Ind3UsgviX9XdUn6b1+VuRaUTVwuNFb7gOcN17sZOM43T\n59ydX+KqyxocvbyJ37k/C/XlyJW6hu46s+ULKZ5cW6ZNYVsWnlr27uQwPhxn\n+pL0\r\n=o2WI\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDGyAoocxAwfDmGXGWqtN/zOdroyOro6C6/A9kFuJawugIhAKMSknFI6wEmYHpaNm82N5p2qv+tHEw3xnFqxeox0h4v"}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline_2.1.3_1573835277568_0.5186486622365454"},"_hasShrinkwrap":false},"2.1.4":{"name":"serverless-step-functions-offline","version":"2.1.4","description":"Serverlesss plugin to support step function offline","main":"index.js","author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"},"homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"scripts":{"test":"nyc ./node_modules/mocha/bin/mocha  ./tests/index.test.js './tests/!(index).test.js'","lint":"eslint '**/*.{js,jsx}' --quiet"},"dependencies":{"bluebird":"^3.5.1","lodash":"^4.17.15","moment":"^2.20.1"},"devDependencies":{"chai":"^4.1.2","eslint":"^6.6.0","mocha":"^5.0.0","nyc":"^11.4.1","pre-commit":"^1.1.3","serverless":"^1.25.0","sinon":"^4.2.1"},"nyc":{"include":["*.js"]},"pre-commit":["lint"],"keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"license":"MIT","gitHead":"91071b61df7e56cecb8d6f70c171b833e3dc35e4","_id":"serverless-step-functions-offline@2.1.4","_npmVersion":"6.4.1","_nodeVersion":"10.12.0","_npmUser":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"dist":{"integrity":"sha512-7Iq/W7tCvGZ+jHdYtPnZPVxvgS9Y02gx/iPCmmvhDgekJdJh48JCID0eP9w/MsHhZHLSKiVRQKLTnsdo2hvzDQ==","shasum":"a8f84e4383750cd00a4f3c3ca0e33c36e62155a7","tarball":"https://registry.npmjs.org/serverless-step-functions-offline/-/serverless-step-functions-offline-2.1.4.tgz","fileCount":18,"unpackedSize":160106,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdztXCCRA9TVsSAnZWagAALj4P/RuqYlcQoVaFeXeR35Hh\nqs2W67ihHj1LGV25CIorrXfmfdCOWVodz/RPuxWAK1Zy1RiDX/xomte+MdFq\nDsOfll1Q1yHi6qGawSUtvMoIg4QX5yHzHT2S4qFp8cVzkNPG6Hs5U8c7OYUf\nriQL5pn5E58j6s3/gIcwvOGc7Njvx0jgaOeIYrapTgYXEadbFYsiYU8trEbB\nz+7bkHpUTLuLDpNTYssA+goF/OFL1QyfQJcSOjCA24wik0iA7tLOrgnkNC/l\nRD8zx2xswq22WNI9PnEwgOJ8L62j9NRUpApzRQiQZDZG4bZgTSwQMGJYEcbS\nCYvOIDRFhpzFM4+Kfo1uJvuWlDmnJPwUtGLUXXHg4lJHCwjZpHwvo2sf3beL\nVg8CgPcS8waQy5YsWRvcPMJngMfImgXDKrY2ZFVhNxQUtmCC1tDvJHQtBkV1\nQSRVUQlJ2IvbFeBqTuVo0CRVS02zy/4FSR14ymxNpP39JXGuy3l6SL7iMuBV\nNdbASOyHBtkUAml60+F3+RlpSS0MliNOPECG5DgFprX5pZxegqN3uk0RdA+3\noRUxuzutGiqVVXODfAbKDlskvAPhTCpiNM2k4f80KhVDEN60UMRpjFPYsi/h\nkJ6xoDw1iwT3/kKEV7JhPScZxgoS4JZqA33L1gHhIu+N1TtCBmwuCVmVFxxD\nrl4V\r\n=5MfX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDiOmfFEBA7X5AN3CI3z5/J/Frv0QviZtPDKjOny19AQQIhALDZEsn2HO3LkICs0D6M3Zz1l05/aa8ns1xu1gaIvU8O"}]},"maintainers":[{"name":"viktor.kis","email":"vkkis1993@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/serverless-step-functions-offline_2.1.4_1573836226214_0.464736884137704"},"_hasShrinkwrap":false}},"license":"MIT","readmeFilename":"README.md","homepage":"https://github.com/vkkis93/serverless-step-functions-offline#readme","keywords":["aws","lambda","serverless","step functions","serverless-step-functions-offline"],"repository":{"type":"git","url":"git+ssh://git@github.com/vkkis93/serverless-step-functions-offline.git"},"author":{"name":"viktor.kis","email":"vkkis1993@gmail.com"},"bugs":{"url":"https://github.com/vkkis93/serverless-step-functions-offline/issues"}}