forked from mstrandgren/jsondiffpatch
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.62 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
60
61
62
63
64
65
66
67
68
{
"name": "jsondiffpatch",
"version": "0.1.38",
"author": "Benjamin Eidelman <[email protected]>",
"description": "Diff & Patch for Javascript objects",
"contributors": [
"Benjamin Eidelman <[email protected]>"
],
"bin": {
"jsondiffpatch": "./bin/jsondiffpatch"
},
"scripts": {
"test": "gulp test && gulp test-browser",
"bump": "gulp bump",
"cover": "istanbul cover --root src gulp test",
"cover-report": "open coverage/lcov-report/index.html",
"cover-publish": "istanbul cover _mocha --report lcovonly && codeclimate < coverage/lcov.info"
},
"main": "./src/main",
"repository": {
"type": "git",
"url": "https://github.com/benjamine/jsondiffpatch.git"
},
"keywords": [
"json",
"diff",
"patch"
],
"dependencies": {
"chalk": "^0.5.1"
},
"devDependencies": {
"bulk-require": "^0.2.1",
"codeclimate-test-reporter": "0.0.3",
"expect.js": "~0.3.1",
"fiberglass": "0.0.22",
"gulp": "^3.8.8",
"istanbul": "^0.3.2",
"mocha": "^1.21.4"
},
"bundleDependencies": [],
"license": "MIT",
"engine": {
"node": ">=0.10"
},
"testling": {
"harness": "mocha",
"files": "test/index.js",
"scripts": [
"build/jsondiffpatch.js",
"external/diff_match_patch_uncompressed.js"
],
"browsers": [
"ie/8..latest",
"chrome/27..latest",
"firefox/22..latest",
"safari/5.1..latest",
"opera/12..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
]
},
"engines": {
"node": "*"
},
"homepage": "https://github.com/benjamine/jsondiffpatch"
}