-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
59 lines (59 loc) · 1.39 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
{
"name": "deep-object-diff",
"version": "1.1.9",
"description": "Deep diffs two objects, including nested structures of arrays and objects, and return the difference.",
"main": "cjs/index.js",
"module": "mjs/index.js",
"exports": {
".": {
"import": "./mjs/index.js",
"require": "./cjs/index.js",
"types": "./index.d.ts"
}
},
"types": "./index.d.ts",
"scripts": {
"build": "rm -rf dist && babel src -d dist/cjs && node scripts/build.mjs",
"prepublish": "yarn build",
"lint": "eslint src",
"test": "jest",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test -- --watch"
},
"author": "Matt Phillips",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^27.4.6",
"eslint": "^8.7.0",
"jest": "^27.4.7"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12"
}
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattphillips/deep-object-diff.git"
},
"keywords": [
"diff",
"object",
"deep",
"difference"
],
"bugs": {
"url": "https://github.com/mattphillips/deep-object-diff/issues"
},
"homepage": "https://github.com/mattphillips/deep-object-diff#readme"
}