forked from tristanstraub/diff-json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 996 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 996 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": "diff-json",
"version": "2.0.0",
"description": "Generates diffs of javascript objects.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha --compilers coffee:coffee-script/register -R spec --recursive test",
"prepublish": "coffee --output dist --compile src"
},
"repository": {
"type": "git",
"url": "git@github.com:viruschidai/diff-json.git"
},
"keywords": [
"javascript",
"JSON",
"diff",
"patch",
"revert",
"apply changes",
"revert changes"
],
"author": "viruschidai@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/viruschidai/diff-json/issues"
},
"homepage": "https://github.com/viruschidai/diff-json",
"dependencies": {
"lodash.intersection": ">= 4.0.0",
"lodash.difference": ">= 4.0.0",
"lodash.keyby": ">= 4.0.0",
"lodash.find": ">= 4.0.0"
},
"devDependencies": {
"coffee-script": "1.12.7",
"expect.js": "0.3.1",
"mocha": "5.2.0"
}
}