-one
-two
-three
--
--
--
--
--
--
--
--
- // instantiate the editors in an internal data structure that will store a little info about the diffs and
- // editor content
- this.editors = {
- left: {
- ace: ace.edit(this.options.left.id),
- markers: [],
- lineLengths: []s
- },
- right: {
- ace: ace.edit(this.options.right.id),
- markers: [],
- lineLengths: []
- }
- };
+
{
+ "name": "ace-diff",
+ "version": "0.1.0",
+ "date": "Mar 7th, 2015",
+
+
+ "description": "A diff/merging wrapper for Ace Editor built on google-diff-match-patch",
+ "main": "dist/ace-diff.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/benkeen/ace-diff.git"
+ },
+ "keywords": [
+ "ace",
+ "dif",
+ "merging",
+ "ace editor",
+ "syntax highlighting"
+ ],
+ "author": "Ben Keen",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/benkeen/ace-diff/issues"
+ },
+ "homepage": "https://github.com/benkeen/ace-diff",
+ "devDependencies": {
+ "grunt": "^0.4.5",
+ "grunt-contrib-uglify": "^0.8.0",
+ "grunt-contrib-clean": "~0.5.0",
+ "grunt-contrib-watch": "~0.5.3",
+ "grunt-contrib-jshint": "^0.10.0"
}
-}));