merge-diff-ui
Version:
A UI tool for merging text diff.
42 lines (41 loc) • 1.21 kB
JSON
{
"name": "merge-diff-ui",
"version": "1.0.0",
"description": "A UI tool for merging text diff.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare" : "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doquocdat/merge-diff-ui.git"
},
"keywords": ["Merge", "Diff", "Text Diff", "Merge UI", "Conflict"],
"author": "Dat Do - doquocdatbk@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/doquocdat/merge-diff-ui/issues"
},
"homepage": "https://github.com/doquocdat/merge-diff-ui#readme",
"devDependencies": {
"@types/jest": "^29.2.0",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.4"
},
"files": [
"lib/**/*"
]
}