-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.44 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
61
62
63
64
65
66
67
{
"name": "dbconvert",
"version": "0.2.3",
"description": "Convert your database to a new database.",
"main": "lib/db-convert.js",
"scripts": {
"test": "grunt test"
},
"bin": {
"dbconvert": "./bin/db-convert.js"
},
"config": {
"blanket": {
"data-cover-never": "node_modules",
"data-cover-flags": {
"engineOnly": true
}
}
},
"keywords": [
"convert",
"database",
"relational",
"nosql",
"mysql",
"mongodb",
"adapter"
],
"author": "Dominic Rico-Gomez",
"license": "MIT",
"dependencies": {
"ansi": "^0.3.1",
"assert": "^1.3.0",
"async": "^1.5.2",
"chalk": "^1.1.1",
"commander": "~2.9.0",
"lodash": "^4.5.0",
"mongodb": "^2.1.7",
"mysql": "^2.10.2",
"rc": "^1.1.6",
"util": "^0.10.3",
"winston": "^2.1.1"
},
"devDependencies": {
"blanket": "^1.2.1",
"chai": "^3.5.0",
"coveralls": "^2.11.6",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^1.0.0",
"grunt-exec": "^0.4.6",
"grunt-mocha-istanbul": "^3.0.1",
"grunt-mocha-test": "^0.12.7",
"gruntify-eslint": "^2.0.0",
"istanbul": "^0.4.2",
"jshint-stylish": "^2.1.0",
"load-grunt-tasks": "^3.4.0",
"mocha": "^2.4.5"
},
"bugs": {
"url": "https://github.com/dominicrico/dbconvert/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dominicrico/dbconvert/dbconvert.git"
},
"preferGlobal": true
}