-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.41 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.41 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "diff-arrays-of-objects",
"description": "Compare two arrays of objects, finding added, removed, updated and identical objects. Details the differences between updated objects.",
"homepage": "https://github.com/malcolmvr/diff-arrays-of-objects",
"version": "1.1.10",
"main": "lib",
"author": {
"email": "malcolm@van.raalte.ca",
"name": "Malcolm van Raalte",
"url": "https://github.com/malcolmvr"
},
"contributors": [
{
"email": "victorfern91@gmail.com",
"name": "Victor Fernandes",
"url": "https://victorfern91.github.io"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/malcolmvr/diff-arrays-of-objects.git"
},
"bugs": {
"url": "https://github.com/malcolmvr/diff-arrays-of-objects/issues"
},
"keywords": [
"added",
"array",
"compare",
"deep",
"delta",
"diff",
"difference",
"object",
"removed",
"updated",
"objects"
],
"dependencies": {
"deep-diff": "^1.0.2",
"lodash": "4"
},
"devDependencies": {
"eslint": "latest",
"expect.js": "latest",
"mocha": "^11.3.0",
"nyc": "latest",
"should": "latest"
},
"engines": {
"node": ">= 8"
},
"files": [
"lib"
],
"license": "MIT",
"scripts": {
"clean": "rm -rf node_modules",
"lint": "eslint ./lib",
"pretest": "npm run lint",
"test": "nyc --reporter=html --reporter=text mocha"
}
}