forked from flitbit/diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (77 loc) · 2.48 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
{
"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.8",
"license": "MIT",
"keywords": [
"diff",
"difference",
"compare",
"change-tracking"
],
"author": "Phillip Clark <phillip@flitbit.com>",
"contributors": [
"Simen Bekkhus <sbekkhus91@gmail.com>",
"Paul Pflugradt <paulpflugradt@googlemail.com>",
"wooorm <tituswormer@gmail.com>",
"Nicholas Calugar <njcalugar@gmail.com>",
"Yandell <hyandell@amazon.com>",
"Thiago Santos <thia.mdossantos@gmail.com>",
"Steve Mao <maochenyan@gmail.com>",
"Mats Bryntse <mats.dev@bryntum.com>",
"Phillip Clark <pclark@leisurelink.com>",
"ZauberNerd <zaubernerd@zaubernerd.de>",
"ravishivt <javishi@gmail.com>",
"Daniel Spangler <daniel.spangler@gmail.com>",
"Sam Beran <sberan@gmail.com>",
"Thomas de Barochez <thomas.barochez+github@gmail.com>",
"Morton Fox <github@qslw.com>",
"Amila Welihinda <amilajack@users.noreply.github.com>",
"Will Biddy <willbiddy@gmail.com>",
"icesoar <icesoar@hotmail.com>",
"Serkan Serttop <serkanserttop@yahoo.com>",
"orlando <operri@opentable.com>",
"Tom MacWright <tmcw@users.noreply.github.com>",
"Denning <denningj@amazon.com>",
"Dan Drinkard <dan.drinkard@gmail.com>",
"Elad Efrat <elad@iNNU.ORG>",
"caasi Huang <caasi.igd@gmail.com>",
"Tom Ashworth <tashworth@twitter.com>"
],
"files": [
"index.js",
"index.es.js",
"releases/"
],
"repository": {
"type": "git",
"url": "git://github.com/flitbit/diff.git"
},
"main": "./index.js",
"module": "./index.es.js",
"jsnext:main": "/index.es.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",
"rollup": "^0.41.6",
"uglifyjs": "^2.4.10"
},
"scripts": {
"lint": "jscs index.es.js test/ -e && jshint index.es.js test/",
"build": "rollup index.es.js -f umd -o index.js -n DeepDiff",
"test": "mocha test/",
"release": "uglifyjs index.js -o releases/deep-diff-$npm_package_version.min.js -r '$,require,exports,module,window,global' -m --comments '/^!/'",
"prepublish": "npm run build",
"prerelease": "npm test",
"prebuild": "npm run lint",
"pretest": "npm run build"
}
}