forked from theogravity/migrate-mongo-alt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "migrate-mongo-alt",
"version": "10.2.0",
"description": "A database migration tool for MongoDB in Node",
"main": "lib/migrate-mongo.js",
"bin": {
"migrate-mongo": "bin/migrate-mongo.js"
},
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --recursive",
"test-coverage": "nyc --reporter=text-lcov mocha --recursive | coveralls",
"lint": "eslint lib/ test/"
},
"author": "Sebastian Van Sande",
"license": "MIT",
"keywords": [
"migrate mongo mongodb migrations database"
],
"repository": {
"type": "git",
"url": "https://github.com/theogravity/migrate-mongo-alt.git"
},
"engines": {
"node": ">=12"
},
"preferGlobal": true,
"dependencies": {
"cli-table3": "^0.6.1",
"commander": "^8.3.0",
"date-fns": "^2.28.0",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"mongodb": "^4.3.0",
"mongodb-client-encryption": "^2.3.0",
"node-gyp": "^9.3.1",
"p-each-series": "^2.2.0"
},
"devDependencies": {
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^10.0.3",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^12.0.1"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018
}
}
}