-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.23 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
{
"name": "mongoose-time-machine",
"version": "1.0.3",
"description": "Manage Mongo Collection diff History and versions",
"main": "index.js",
"directories": {
"example": "example",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bsovs/mongoose-time-machine.git"
},
"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-remove": "^1.0.0",
"power-assign": "^0.2.10"
},
"devDependencies": {
"bluebird": "^3.5.1",
"chai": "^3.5.0",
"commitlint": "^12.1.1",
"husky": "^4.2.5",
"istanbul": "^0.4.5",
"mocha": "^8.3.2",
"mongoose": "^5.12.3",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"standard-version": "^9.2.0"
},
"scripts": {
"test": "nyc --reporter=lcov mocha tests --exit && nyc report --reporter=lcov",
"release": "standard-version",
"dc:db-up": "docker-compose -f ./tests/db/docker-compose.yml up --remove-orphans -d && docker exec -it localmongo1 /bin/bash",
"dc:db-down": "docker-compose -f ./tests/db/docker-compose.yml down --remove-orphans",
"dc:db-destroy": "docker-compose -f ./tests/db/docker-compose.yml down -v --remove-orphans"
},
"contributors": [
"Saurabh Mimani <[email protected]>",
"Amith Prasad <[email protected]>",
"Zachary Rollyson <[email protected]>",
"Brandon Sovran <[email protected]>"
],
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"mongoose",
"audit",
"oplog",
"diff",
"history",
"versioning"
],
"bugs": {
"url": "https://github.com/bsovs/mongoose-time-machine/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "Apache-2.0",
"homepage": "https://github.com/bsovs/mongoose-time-machine#readme",
"author": "bsovs"
}