forked from benjamine/jsondiffpatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.95 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "jsondiffpatch",
"version": "0.1.8",
"author": "Benjamin Eidelman <[email protected]>",
"description": "Diff & Patch for Javascript objects",
"contributors": [
"Benjamin Eidelman <[email protected]>"
],
"bin": {
"jsondiffpatch": "./bin/jsondiffpatch"
},
"scripts": {
"test": "npm install && ./node_modules/.bin/gulp test test-browser"
},
"main": "./src/main",
"repository": {
"type": "git",
"url": "git://github.com/benjamine/jsondiffpatch.git"
},
"keywords": [
"json",
"diff",
"patch"
],
"devDependencies": {
"expect.js": "~0.3.1",
"gulp": "~3.5.2",
"gulp-browserify": "~0.4.4",
"gulp-clean": "~0.2.4",
"gulp-jshint": "~1.5.0",
"gulp-karma": "0.0.4",
"gulp-load-plugins": "~0.3.0",
"gulp-mocha": "~0.4.1",
"gulp-plumber": "~0.5.6",
"gulp-rename": "~1.1.0",
"gulp-replace": "~0.2.0",
"gulp-uglify": "~0.2.1",
"gulp-util": "~2.2.14",
"jshint-stylish": "~0.1.5",
"karma": "~0.12.16",
"karma-chrome-launcher": "~0.1.2",
"karma-firefox-launcher": "~0.1.3",
"karma-growler-reporter": "~0.0.1",
"karma-html2js-preprocessor": "~0.1.0",
"karma-mocha": "~0.1.4",
"karma-phantomjs-launcher": "~0.1.2",
"karma-script-launcher": "~0.1.0",
"karma-spec-reporter": "~0.0.10",
"mocha": "~1.17.1"
},
"bundleDependencies": [],
"license": "MIT",
"engine": {
"node": ">=0.10"
},
"dependencies": {
"chalk": "~0.4.0"
},
"testling": {
"harness": "mocha",
"files": "test/*.js",
"scripts": [
"build/bundle.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"
}