-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 870 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 870 Bytes
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
{
"name": "object-deep-differ",
"version": "1.0.0",
"description": "Return the deep differnce between two objects",
"main": "index.js",
"author": "Marc Herrero Rivelles <rivelles.marc@gmail.com>",
"license": "MIT",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fsdevlondon/object-deep-differ.git"
},
"bugs": {
"url": "https://github.com/fsdevlondon/object-deep-differ/issues"
},
"homepage": "https://github.com/fsdevlondon/object-deep-differ#readme",
"keywords": [
"object-diff",
"object-differ",
"deep-diff",
"deep-differ",
"diff",
"differ"
],
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"chai": "^3.4.0",
"mocha": "^2.3.3"
}
}