-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "mysql2mongo",
"version": "1.1.1",
"description": "It imports the MySQL records to a Mongo-based database",
"main": "run.js",
"scripts": {
"start": "node run.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Eduardo Quagliato <[email protected]>",
"license": "MIT",
"dependencies": {
"async": "^2.1.2",
"eslint": "^4.6.1",
"mongodb": "^2.2.11",
"mongoskin": "^2.1.0",
"spawl": "0.0.4",
"spawl-mariadb": "0.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quagliato/mysql2mongo.git"
},
"keywords": [
"mysql",
"mariadb",
"mongodb",
"importer"
],
"bugs": {
"url": "https://github.com/quagliato/mysql2mongo/issues"
},
"homepage": "https://github.com/quagliato/mysql2mongo#readme",
"devDependencies": {
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
}