-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1011 Bytes
/
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
{
"name": "deep-diff-object",
"version": "1.1.0",
"description": "The purpose of this package is to deep diff two objects. This will, compare two objects and then output an object with all the changes between them.",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpggvilaca/deep-diff-object.git"
},
"keywords": [
"object diff",
"object deepdiff",
"deep",
"diff",
"deep diff",
"deepdiff"
],
"author": "João Vilaça",
"license": "MIT",
"bugs": {
"url": "https://github.com/jpggvilaca/deep-diff-object/issues"
},
"homepage": "https://github.com/jpggvilaca/deep-diff-object#readme",
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/tests/**",
"!**/node_modules/**",
"!**/coverage/**"
]
},
"devDependencies": {
"eslint": "8.20.0",
"jest": "28.1.3",
"prettier": "2.7.1"
}
}