-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 958 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
44
{
"name": "migrate-database",
"description": "A grunt task for database migration in Node.JS",
"version": "0.1.5",
"homepage": "https://github.com/ericsaboia/migrate-database",
"author": {
"name": "Eric Saboia",
"email": "[email protected]",
"url": "http://failfast.tips"
},
"repository": {
"type": "git",
"url": "git://github.com:ericsaboia/migrate-database.git"
},
"bugs": {
"url": "https://github.com/ericsaboia/migrate-database/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ericsaboia/migrate-database/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"peerDependencies": {
"grunt": "~0.4.5"
},
"keywords": [
"gruntplugin",
"migrate",
"migration",
"database"
],
"dependencies": {
"async": "^0.9.0",
"lodash": "^2.4.1",
"promised-mongo": "^0.11.1"
}
}