forked from seppevs/migrate-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.39 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
{
"name": "migrate-mongo",
"version": "5.0.2-expatel",
"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/seppevs/migrate-mongo.git"
},
"engines": {
"node": ">=7.6"
},
"preferGlobal": true,
"dependencies": {
"cli-table": "0.3.1",
"commander": "2.18.0",
"date-fns": "1.29.0",
"fn-args": "3.0.0",
"fs-extra": "7.0.0",
"lodash": "4.17.11",
"mongodb": "3.1.6",
"p-each-series": "1.0.0"
},
"devDependencies": {
"chai": "4.2.0",
"coveralls": "3.0.2",
"eslint": "5.6.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-mocha": "5.2.0",
"mocha": "5.2.0",
"nyc": "13.0.1",
"proxyquire": "2.1.0",
"sinon": "6.3.4"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018
}
}
}