forked from mattphillips/deep-object-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 KB
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
{
"name": "@airthium/deep-object-diff",
"version": "1.0.71",
"description": "Deep diffs two objects, including nested structures of arrays and objects, and return the difference.",
"homepage": "https://github.com/Airthium/deep-object-diff",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/Airthium/deep-object-diff.git"
},
"license": "MIT",
"author": {
"name": "Airthium",
"url": "https://github.com/orgs/Airthium/people"
},
"bugs": {
"url": "https://github.com/Airthium/deep-object-diff/issues"
},
"main": "dist/index.js",
"scripts": {
"depcheck": "depcheck . --ignores @types/*,@swc/jest",
"prettier": "prettier -l '**/*.{js,ts,json,md}'",
"test": "jest --silent --coverage",
"build": "swc src -d dist --strip-leading-paths"
},
"devDependencies": {
"@swc/cli": "0.7.3",
"@swc/core": "1.11.24",
"@swc/jest": "0.2.38",
"@types/jest": "29.5.14",
"depcheck": "1.4.7",
"jest": "29.7.0",
"prettier": "3.5.3"
},
"keywords": [
"diff",
"object",
"deep",
"difference"
]
}