-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 875 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 875 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
{
"name": "shallow-diff",
"description": "compare two objects or arrays and return the diff (add/updated/removed/unchanged)",
"version": "0.0.5",
"homepage": "https://github.com/cosmosio/shallow-diff",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/cosmosio/shallow-diff/master/LICENSE"
}
],
"files": [
"LICENSE",
"index.js"
],
"author": "Olivier Scherrer <pode.fr@gmail.com>",
"keywords": [
"diff",
"objects",
"array",
"shallow"
],
"repository": {
"type": "git",
"url": "git@github.com:cosmosio/shallow-diff.git"
},
"bugs": {
"url": "https://github.com/cosmosio/shallow-diff/issues"
},
"scripts": {
"test": "mocha"
},
"main": "index.js",
"devDependencies": {
"chai": "^2.2.0",
"mocha": "^2.2.4"
},
"dependencies": {
"simple-loop": "0.0.4"
}
}