-
Notifications
You must be signed in to change notification settings - Fork 215
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 836 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 836 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
41
42
43
44
45
46
{
"name": "deep-diff",
"description": "Node.js module providing utility functions for working with the structural differences between objects.",
"version": "0.1.0",
"keywords": [
"diff",
"difference",
"compare",
"change-tracking"
],
"author": {
"name": "Phillip Clark",
"email": "phillip@flitbit.org"
},
"repository": { "type": "git", "url": "git://github.com/flitbit/diff.git" },
"main": "./index.js",
"directories": {
"lib": "./lib",
"test": "./test"
},
"devDependencies" : {
"lodash": {
"version": "0.9.2"
},
"extend": {
"version": "1.1.1"
},
"should": {
"version": "1.2.1"
},
"vows": {
"version": "0.6.4",
"dependencies": {
"eyes": {
"version": "0.1.8"
},
"diff": {
"version": "1.0.4"
}
}
}
},
"scripts": {
"test": "node test/all.js"
}
}