-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 834 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
{
"name": "mysql-stream-importer",
"version": "0.2.0",
"description": "A tool who uses a stream reader to import huge SQL dump scripts into MySQL database",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jetwaves/mysqlStreamImporter.git"
},
"keywords": [
"mysql",
"huge",
"import"
],
"author": "jetwaves",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jetwaves/mysqlStreamImporter/issues"
},
"bin": {
"simport": "./jetwaves/cli"
},
"homepage": "https://github.com/jetwaves/mysqlStreamImporter#readme",
"dependencies": {
"async": "^2.6.0",
"green": "^0.1.3",
"moment": "^2.20.1",
"mysql": "^2.15.0",
"promise": "^8.0.1"
}
}