forked from nassor/mongoose-history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.45 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
{
"name": "mongoose-history",
"version": "0.11.0",
"description": "Keeps a history of all changes of a document.",
"main": "lib/mongoose-history.js",
"files": [
"lib/"
],
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/nassor/mongoose-history"
},
"keywords": [
"mongoose",
"history",
"safe",
"cqrs",
"backup"
],
"author": {
"name": "Nassor Paulino da Silva",
"email": "[email protected]",
"url": "https://github.com/nassor"
},
"contributors": [
{
"name": "Christopher Britz",
"email": "[email protected]",
"url": "https://github.com/britztopher"
},
{
"name": "Allan Nienhuis",
"url": "https://github.com/allannienhuis"
},
{
"name": "João Manoel Pampanini Filho",
"email": "[email protected]",
"url": "https://github.com/jmpf13"
},
{
"name": "Sebastien Vaucouleur",
"url": "http://vaucouleur.com"
},
{
"name": "Victor Parmar",
"url": "https://smalldata.tech"
}
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/nassor/mongoose-history/issues"
},
"dependencies": {},
"devDependencies": {
"async": "^3.2.4",
"mongoose": "~6 || ~7 || ~8",
"mocha": "2.4.5",
"should": "8.2.2"
},
"peerDependencies": {
"async": "^3.2.4",
"mongoose": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
}
}