@tachibana-shin/diff-object
Version:
Get diff object advanced
69 lines • 1.74 kB
JSON
{
"name": "@tachibana-shin/diff-object",
"version": "0.0.6",
"description": "Get diff object advanced",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"unpkg": "./dist/index.mjs",
"jsdelivr": "dist/index.global.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"@tachibana-shin/eslint-config": "^1.0.2",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^17.0.36",
"bumpp": "^7.1.1",
"conventional-changelog-cli": "^2.2.2",
"cspell": "^6.0.0",
"eslint": "^8.16.0",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"tsup": "^6.0.1",
"typescript": "^4.7.2",
"vitest": "^0.13.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/tachibana-shin/diff-object.git"
},
"homepage": "https://tachibana-shin.github.io/diff-object",
"keywords": [
"diff-object",
"Tachibana Shin",
"tachibana-shin"
],
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "pnpm format"
}
},
"engines": {
"node": ">=10"
},
"dependencies": {
"lodash.isequal": "^4.5.0"
},
"scripts": {
"format": "prettier -w src",
"build": "tsup",
"dev": "tsx ./src/index.ts",
"lint": "eslint src --ext=.ts",
"lint:fix": "pnpm lint --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "bumpp package.json --commit --push --tag && pnpm -r publish --access public",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
}
}