* removed editor and initial cleanup * cleanup * updated jquery * tidy up * moved src and build to lib * tidy up and fixed webpack * updated readme * removed junk * tidy up * works with sample and editor * removed editor_width and editor_height * auto width and height * added license feature * not doing dist * fixed typo * added searchcursor * fixed typo * doc updates * improved comment * updated init for cm settings * fixed jquery/cm includes * documentation updates * updated changes doc * fixed cmsettings * updated examples
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "mergely",
|
|
"version": "4.0.0",
|
|
"description": "A javascript UI for diff/merge",
|
|
"directories": {
|
|
"doc": "doc",
|
|
"example": "examples",
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"build": "rm -rf lib && webpack",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/wickedest/Mergely.git"
|
|
},
|
|
"main": "lib/mergely.js",
|
|
"files": [
|
|
"lib",
|
|
"examples",
|
|
"README.md"
|
|
],
|
|
"keywords": [
|
|
"merge",
|
|
"diff",
|
|
"myers"
|
|
],
|
|
"author": {
|
|
"name": "Jamie Peabody",
|
|
"email": "jamie.peabody@gmail.com",
|
|
"url": "http://mergely.com"
|
|
},
|
|
"license": "(GPL-3.0 OR LGPL-3.0 OR MPL-1.1 OR SEE LICENSE IN LICENSE)",
|
|
"bugs": {
|
|
"url": "https://github.com/wickedest/Mergely/issues"
|
|
},
|
|
"homepage": "https://github.com/wickedest/Mergely#readme",
|
|
"devDependencies": {
|
|
"codemirror": "^5.32.0",
|
|
"css-loader": "^0.28.7",
|
|
"extract-text-webpack-plugin": "^3.0.2",
|
|
"file-loader": "^1.1.5",
|
|
"image-webpack-loader": "^3.4.2",
|
|
"jquery": "^3.2.1",
|
|
"webpack": "^3.8.1"
|
|
}
|
|
}
|