├── .bowerrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── gruntfile.js ├── index.d.ts ├── jasmine-run.js ├── package.json ├── src └── json-patch-ot.js └── test ├── SpecRunner.html ├── SpecRunnerMin.html └── spec └── transformSpec.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "../" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/bower.json -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/gruntfile.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/index.d.ts -------------------------------------------------------------------------------- /jasmine-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/jasmine-run.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/package.json -------------------------------------------------------------------------------- /src/json-patch-ot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/src/json-patch-ot.js -------------------------------------------------------------------------------- /test/SpecRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/test/SpecRunner.html -------------------------------------------------------------------------------- /test/SpecRunnerMin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/test/SpecRunnerMin.html -------------------------------------------------------------------------------- /test/spec/transformSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palindrom/JSON-Patch-OT/HEAD/test/spec/transformSpec.js --------------------------------------------------------------------------------