parse-diff
Version:
Unified diff parser
31 lines (30 loc) • 681 B
JSON
{
"name": "parse-diff",
"version": "0.12.0",
"description": "Unified diff parser",
"author": "Sergey Todyshev <stodyshev@gmail.com>",
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:sergeyt/parse-diff.git"
},
"keywords": [
"diff",
"unidiff",
"parser"
],
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"esbuild": "^0.28.0",
"jest": "^30.3.0"
},
"scripts": {
"lint:fix": "biome check --write .",
"lint": "biome check .",
"build": "esbuild parse.js --minify --outfile=index.js",
"test": "jest",
"ci": "npm run lint && npm test"
}
}