forked from flitbit/diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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 <[email protected]>",
"contributors": [
"Simen Bekkhus <[email protected]>",
"Paul Pflugradt <[email protected]>",
"wooorm <[email protected]>",
"Nicholas Calugar <[email protected]>",
"Yandell <[email protected]>",
"Thiago Santos <[email protected]>",
"Steve Mao <[email protected]>",
"Mats Bryntse <[email protected]>",
"Phillip Clark <[email protected]>",
"ZauberNerd <[email protected]>",
"ravishivt <[email protected]>",
"Daniel Spangler <[email protected]>",
"Sam Beran <[email protected]>",
"Thomas de Barochez <[email protected]>",
"Morton Fox <[email protected]>",
"Amila Welihinda <[email protected]>",
"Will Biddy <[email protected]>",
"icesoar <[email protected]>",
"Serkan Serttop <[email protected]>",
"orlando <[email protected]>",
"Tom MacWright <[email protected]>",
"Denning <[email protected]>",
"Dan Drinkard <[email protected]>",
"Elad Efrat <[email protected]>",
"caasi Huang <[email protected]>",
"Tom Ashworth <[email protected]>"
],
"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"
}
}