├── .gitignore ├── .travis.yml ├── README.md ├── index.js ├── package.json └── spec ├── TransactionSpec.js ├── helpers └── UserSchema.js └── support └── jasmine.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-io/mongoose-transaction/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-io/mongoose-transaction/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-io/mongoose-transaction/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-io/mongoose-transaction/HEAD/package.json -------------------------------------------------------------------------------- /spec/TransactionSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-io/mongoose-transaction/HEAD/spec/TransactionSpec.js -------------------------------------------------------------------------------- /spec/helpers/UserSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-io/mongoose-transaction/HEAD/spec/helpers/UserSchema.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-io/mongoose-transaction/HEAD/spec/support/jasmine.json --------------------------------------------------------------------------------