forked from flitbit/diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.82 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
{
"name": "deep-diff",
"description": "Javascript utility for calculating deep difference, capturing changes, and applying changes across objects; for nodejs and the browser.",
"version": "0.3.4",
"license": "MIT",
"keywords": [
"diff",
"difference",
"compare",
"change-tracking"
],
"author": "Phillip Clark <phillip@flitbit.com>",
"contributors": [
"Dan Drinkard <dan.drinkard@gmail.com>",
"Daniel Spangler <daniel.spangler@gmail.com>",
"Denning <denningj@amazon.com>",
"Elad Efrat <elad@iNNU.ORG>",
"Mats Bryntse <mats.dev@bryntum.com>",
"Nicholas Calugar <njcalugar@gmail.com>",
"Paul Pflugradt <paulpflugradt@googlemail.com>",
"Serkan Serttop <serkanserttop@yahoo.com>",
"Simen Bekkhus <sbekkhus91@gmail.com>",
"Tom Ashworth <tashworth@twitter.com>",
"Tom MacWright <tmcw@users.noreply.github.com>",
"Yandell <hyandell@amazon.com>",
"ZauberNerd <zaubernerd@zaubernerd.de>",
"caasi Huang <caasi.igd@gmail.com>",
"icesoar <icesoar@hotmail.com>",
"orlando <operri@opentable.com>",
"ravishivt <javishi@gmail.com>",
"wooorm <tituswormer@gmail.com>"
],
"files": [
"index.js",
"releases/"
],
"repository": {
"type": "git",
"url": "git://github.com/flitbit/diff.git"
},
"main": "./index.js",
"directories": {
"examples": "./examples",
"releases": "./releases",
"test": "./test"
},
"devDependencies": {
"deep-equal": "~1.0.0",
"expect.js": "^0.3.1",
"jscs": "^1.12.0",
"jshint": "^2.6.3",
"mocha": "^2.2.1",
"uglifyjs": "^2.4.10"
},
"scripts": {
"release": "uglifyjs index.js -o releases/deep-diff-$npm_package_version.min.js -r '$,require,exports,module,window,global' -m --comments '/^!/'",
"pretest": "jscs index.js test/ && jshint index.js test/",
"test": "mocha"
}
}