-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 978 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
36
37
38
39
40
41
42
{
"name": "mongodb-changelog",
"version": "3.0.1",
"description": "Liquibase inspired mongodb changelog tool for node.",
"main": "src/index.js",
"scripts": {
"test": "nyc mocha test --reporter=list --check-leaks",
"coverage": "nyc report --reporter=lcov && cat coverage/lcov.info | coveralls"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/malykhinvi/node-mongodb-changelog.git"
},
"keywords": [
"mongodb",
"migrations",
"migrate",
"changelog",
"liquibase"
],
"author": "malykhinvi",
"license": "MIT",
"bugs": {
"url": "https://github.com/malykhinvi/node-mongodb-changelog/issues"
},
"homepage": "https://github.com/malykhinvi/node-mongodb-changelog",
"dependencies": {
"mongodb": "^3.5.6"
},
"devDependencies": {
"coveralls": "^3.1.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"should": "^13.2.3"
},
"engines": {
"node": ">= 10"
}
}