-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
43 lines (43 loc) · 911 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
43
{
"name": "mongration",
"version": "1.0.0",
"description": "Node.js mongodb migration framework",
"main": "index.js",
"bin": {
"mongration": "./bin/mongration.js"
},
"scripts": {
"test": "mocha",
"istanbul": "istanbul cover _mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/awapps/mongration.git"
},
"keywords": [
"mongration",
"mongodb",
"migration",
"database",
"node mongodb migration framework"
],
"author": "Eberhardt, Andre",
"license": "MIT",
"bugs": {
"url": "https://github.com/awapps/mongration/issues"
},
"dependencies": {
"async": "~2.6.0",
"chalk": "^2.4.1",
"commander": "^2.9.0",
"console.table": "^0.10.0",
"lodash": "^4.17.5",
"md5": "~2.0.0",
"mongodb": "~2.2.25"
},
"devDependencies": {
"chai": "^4.1.2",
"istanbul": "^0.4.3",
"mocha": "^5.1.1"
}
}