## [5.3.6](https://github.com/wickedest/Mergely/compare/v5.3.5...v5.3.6) (2024-10-11) ### Bug Fixes * **#207:** Updated documentation for search method. ([#214](https://github.com/wickedest/Mergely/issues/214)) ([350e5af](350e5af2e8)), closes [#207](https://github.com/wickedest/Mergely/issues/207)
81 lines
2.3 KiB
JSON
81 lines
2.3 KiB
JSON
{
|
|
"name": "mergely",
|
|
"version": "5.3.6",
|
|
"description": "A javascript UI for diff/merge",
|
|
"license": "(GPL-3.0 OR LGPL-3.0 OR MPL-1.1 OR SEE LICENSE IN LICENSE)",
|
|
"author": {
|
|
"name": "Jamie Peabody",
|
|
"email": "jamie.peabody@gmail.com",
|
|
"url": "https://mergely.com"
|
|
},
|
|
"homepage": "https://github.com/wickedest/Mergely#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/wickedest/Mergely/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:wickedest/Mergely.git"
|
|
},
|
|
"main": "lib/mergely.js",
|
|
"files": [
|
|
"lib/mergely.js",
|
|
"lib/mergely.min.js",
|
|
"lib/mergely.css",
|
|
"examples",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"keywords": [
|
|
"merge",
|
|
"diff",
|
|
"myers"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/core": "^7.1.6",
|
|
"@babel/preset-env": "^7.1.6",
|
|
"@commitlint/cli": "^17.6.1",
|
|
"@commitlint/config-conventional": "^15.0.0",
|
|
"@commitlint/prompt-cli": "^15.0.0",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"babel-loader": "^8.2.3",
|
|
"babel-plugin-syntax-dynamic-import": "^6.18.0",
|
|
"chai": "^4.3.4",
|
|
"codemirror": "^5.65.12",
|
|
"copy-webpack-plugin": "^6.2.1",
|
|
"css-loader": "^6.5.1",
|
|
"git-conventional-commits": "^1.1.0",
|
|
"html-webpack-plugin": "^4.5.0",
|
|
"http-server": "^14.0.0",
|
|
"husky": "^8.0.3",
|
|
"karma": "^6.3.11",
|
|
"karma-chai": "^0.1.0",
|
|
"karma-chrome-launcher": "^3.1.0",
|
|
"karma-coverage-istanbul-reporter": "^3.0.3",
|
|
"karma-mocha": "^2.0.1",
|
|
"karma-mocha-reporter": "^2.2.5",
|
|
"karma-sourcemap-loader": "^0.4.0",
|
|
"karma-webpack": "^5.0.0",
|
|
"mocha": "^9.1.4",
|
|
"semantic-release": "^21.1.2",
|
|
"simple-mock": "^0.8.0",
|
|
"standard-version": "^9.3.2",
|
|
"style-loader": "^3.3.1",
|
|
"terser-webpack-plugin": "^5.3.7",
|
|
"webpack": "^5.66.0",
|
|
"webpack-cli": "^4.9.1",
|
|
"webpack-dev-server": "^4.7.3",
|
|
"worker-loader": "^3.0.8"
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"build": "npm run test && npm run build:dist",
|
|
"build:dist": "rm -rf lib && webpack --config ./webpack.prod.js",
|
|
"start": "webpack serve --config webpack.dev.js",
|
|
"examples": "http-server ./ -p 3000 -o examples/index.html",
|
|
"debug": "karma start --timeout=28000 --no-browsers --single-run=false",
|
|
"test": "karma start",
|
|
"release": "standard-version -a"
|
|
}
|
|
}
|