forked from flitbit/diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.56 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
{
"name": "deep-diff",
"description": "Javascript utility for calculating deep difference, capturing changes, and applying changes across objects; for nodejs and the browser.",
"version": "1.0.2",
"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]>"
],
"repository": {
"type": "git",
"url": "git://github.com/flitbit/diff.git"
},
"main": "./index.js",
"scripts": {
"prerelease": "npm run clean && npm run test",
"release": "uglifyjs -c -m -o dist/deep-diff.min.js --source-map -r '$,require,exports,self,module,define,navigator' index.js",
"clean": "rimraf dist && mkdir dist",
"preversion": "npm run release",
"postversion": "git push && git push --tags",
"pretest": "npm run lint",
"test": "mocha test/**/*.js",
"test:watch": "nodemon --ext js,json --ignore dist/ --exec 'npm test'",
"preci": "npm run lint",
"ci": "mocha --reporter mocha-junit-reporter test/**/*.js",
"lint": "eslint index.js test"
},
"devDependencies": {
"bluebird": "^3.5.1",
"deep-equal": "^1.0.1",
"eslint": "^4.19.1",
"eslint-plugin-mocha": "^5.0.0",
"expect.js": "^0.3.1",
"json": "^9.0.6",
"json-ptr": "^1.1.0",
"lodash": "^4.17.10",
"mocha": "^5.1.1",
"mocha-junit-reporter": "^1.17.0",
"nodemon": "^1.17.4",
"rimraf": "^2.6.2",
"uglify-js": "^3.3.25"
}
}