@audc/json-diff-ts
Version:
A diff tool for JavaScript based on https://www.npmjs.com/package/diff-json written in TypeScript.
53 lines (52 loc) • 1.48 kB
JSON
{
"name": "@audc/json-diff-ts",
"version": "1.2.4",
"description": "A diff tool for JavaScript based on https://www.npmjs.com/package/diff-json written in TypeScript.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jest.config.json",
"test:watch": "jest --watch --config jest.config.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"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ltwlf/json-diff-ts.git"
},
"keywords": [
"JavaScript",
"Diff",
"JSON",
"TypeScript",
"Difference"
],
"author": "Christian Glessner",
"license": "MIT",
"bugs": {
"url": "https://github.com/ltwlf/json-diff-ts/issues"
},
"homepage": "https://github.com/ltwlf/json-diff-ts#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.182",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"lodash": "^4.x"
}
}