forked from ccanow/mongoose-audit-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 792 Bytes
/
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
{
"name": "mongoose-audit-log",
"version": "2.0.1",
"description": "Manage changes to Mongo collections",
"main": "index.js",
"scripts": {
"test": "mocha --exit src/*.spec.js",
"test-watch": "nodemon --exec \"npm test\"",
"coverage": "nyc --reporter=html --reporter=text -x ./src/*.spec.js npm test"
},
"author": "Carsten Canow (@gmail.com)",
"license": "MIT",
"keywords": [
"mongoose",
"audit",
"log",
"trail",
"history",
"version"
],
"repository": {
"type": "git",
"url": "https://github.com/ccanow/mongoose-audit-log"
},
"devDependencies": {
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0"
},
"dependencies": {
"deep-diff": "^1.0.2",
"mongoose": "^6.1.6"
}
}