-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
71 lines (71 loc) · 1.8 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
{
"name": "mongoose-diff-history",
"version": "2.1.0",
"description": "Manage Mongo Collection diff History and versions",
"main": "diffHistoryModel.js",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/mimani/mongoose-diff-history"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"deep-empty-object": "^1.0.5",
"jsondiffpatch": "^0.1.38",
"lodash.pick": "^4.4.0",
"omit-deep": "https://github.com/izigibran/omit-deep.git#0.4.0",
"power-assign": "^0.2.10"
},
"devDependencies": {
"bluebird": "^3.5.1",
"chai": "^3.5.0",
"commitlint": "^8.3.5",
"husky": "^4.2.5",
"istanbul": "^0.4.5",
"mocha": "^2.5.3",
"mongoose": "^4.13.9",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"standard-version": "^7.1.0"
},
"scripts": {
"test": "istanbul cover --report lcov _mocha tests --recursive",
"release": "standard-version"
},
"contributors": [
{
"name": "Saurabh Mimani",
"email": "[email protected]"
},
{
"name": "Amith Prasad",
"email": "[email protected]"
},
{
"name": "Zachary Rollyson",
"email": "[email protected]"
}
],
"engines": {
"node": "*"
},
"keywords": [
"mongoose",
"audit",
"oplog",
"diff",
"history",
"versioning"
],
"bugs": {
"url": "https://github.com/mimani/mongoose-diff-history/issues"
},
"license": "GPL-2.0"
}