├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE.txt ├── README.md ├── package.json └── src ├── dispatcher ├── README.md ├── api.js └── module.test.js ├── fsm ├── README.md ├── api.js ├── module.test.js └── state.js ├── graphBuilder ├── README.md ├── api.js └── module.test.js ├── index.js ├── modelConsolidator ├── README.md ├── api.js └── module.test.js ├── rosmaro ├── FSMState.js ├── README.md ├── api.js └── module.test.js ├── testUtils.js └── utils ├── README.md └── all.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | notes.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/package.json -------------------------------------------------------------------------------- /src/dispatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/dispatcher/README.md -------------------------------------------------------------------------------- /src/dispatcher/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/dispatcher/api.js -------------------------------------------------------------------------------- /src/dispatcher/module.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/dispatcher/module.test.js -------------------------------------------------------------------------------- /src/fsm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/fsm/README.md -------------------------------------------------------------------------------- /src/fsm/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/fsm/api.js -------------------------------------------------------------------------------- /src/fsm/module.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/fsm/module.test.js -------------------------------------------------------------------------------- /src/fsm/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/fsm/state.js -------------------------------------------------------------------------------- /src/graphBuilder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/graphBuilder/README.md -------------------------------------------------------------------------------- /src/graphBuilder/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/graphBuilder/api.js -------------------------------------------------------------------------------- /src/graphBuilder/module.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/graphBuilder/module.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/index.js -------------------------------------------------------------------------------- /src/modelConsolidator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/modelConsolidator/README.md -------------------------------------------------------------------------------- /src/modelConsolidator/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/modelConsolidator/api.js -------------------------------------------------------------------------------- /src/modelConsolidator/module.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/modelConsolidator/module.test.js -------------------------------------------------------------------------------- /src/rosmaro/FSMState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/rosmaro/FSMState.js -------------------------------------------------------------------------------- /src/rosmaro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/rosmaro/README.md -------------------------------------------------------------------------------- /src/rosmaro/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/rosmaro/api.js -------------------------------------------------------------------------------- /src/rosmaro/module.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/rosmaro/module.test.js -------------------------------------------------------------------------------- /src/testUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/testUtils.js -------------------------------------------------------------------------------- /src/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/utils/README.md -------------------------------------------------------------------------------- /src/utils/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaszmakuch/rosmaro/HEAD/src/utils/all.js --------------------------------------------------------------------------------