-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
93 lines (93 loc) · 2.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "human-object-diff",
"version": "3.0.0",
"description": "Human Readable Difference Between Two Objects",
"keywords": [
"deep-diff",
"human-readable",
"humanize",
"object-diff"
],
"homepage": "https://github.com/Spence-S/human-object-diff",
"bugs": {
"url": "https://github.com/Spence-S/human-object-diff/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Spence-S/human-object-diff"
},
"license": "MIT",
"author": "Spencer Snyder <[email protected]> (https://spencersnyder.io/)",
"contributors": [
"Spencer Snyder <[email protected]> (https://spencersnyder.io/)"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run clean && tsc --project tsconfig.json",
"clean": "rm -rf dist",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "prettier . --write && eslint '**/*.{js,ts}' --fix",
"prepare": "husky install",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"date-fns": "^2.29.3",
"deep-diff": "^1.0.2",
"eslint-config-prettier": "^8.8.0",
"fast-deep-equal": "^3.1.3",
"humanize-string": "^2.1.0",
"titleize": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@types/deep-diff": "^1.0.2",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"codecov": "^3.8.2",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-lass": "^2.0.1",
"eslint-config-xo-typescript": "^0.56.0",
"eslint-plugin-unicorn": "^46.0.0",
"fixpack": "^4.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"np": "^7.6.4",
"npm-package-json-lint": "^6.4.0",
"npm-package-json-lint-config-default": "^5.0.0",
"nyc": "^15.1.0",
"prettier": "^2.8.7",
"prettier-plugin-packagejson": "^2.4.3",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"engines": {
"node": ">=14",
"npm": ">=8"
},
"overrides": {
"decamelize": "4.0.0"
}
}