forked from seppevs/migrate-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "migrate-mongo",
"version": "2.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": "./node_modules/mocha/bin/mocha --recursive",
"test-coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
"lint": "eslint *.js 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"
},
"preferGlobal": true,
"dependencies": {
"async": "2.1.5",
"cli-table": "0.3.1",
"commander": "2.9.0",
"fs-extra": "2.1.1",
"lodash": "4.17.4",
"moment": "2.17.1",
"mongodb": "2.2.24",
"shifting": "1.2.5"
},
"devDependencies": {
"chai": "3.5.0",
"coveralls": "2.12.0",
"eslint": "3.17.1",
"eslint-plugin-mocha": "^4.8.0",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"proxyquire": "1.7.11",
"sinon": "2.0.0"
}
}