@asmartbear/diff-merge
Version:
Text and arbitrary-array diff and merge, fast, multiple algorithms
62 lines (61 loc) • 1.49 kB
JSON
{
"name": "@asmartbear/diff-merge",
"version": "1.0.7",
"description": "Text and arbitrary-array diff and merge, fast, multiple algorithms",
"keywords": [
"diff",
"compare",
"merge"
],
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"postbuild": "rm -rf dist/test",
"test": "mocha --reporter spec --bail -r ts-node/register test/**.ts",
"watch": "npm run test -- --watch",
"bench": "npm run test && npm run build && node benchmarks/diff.js",
"prepare": "npm test && npm run build",
"postpublish": "git push origin master --follow-tags"
},
"license": "MIT",
"repository": {
"url": "git@github.com:asmartbear/diff-merge.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/asmartbear/diff-merge/issues"
},
"author": {
"name": "Jason Cohen",
"url": "https://github.com/asmartbear"
},
"engines": {
"node": ">=8.0.0"
},
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist",
"nodemonConfig": {
"ext": "ts",
"ignore": [
"docs/*"
]
},
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"link-module-alias": "^1.2.0",
"microtime": "^3.0.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"ts-node": "^8.7.0",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
}
}