-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 914 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
{
"name": "mysql-to-bigquery",
"repository": {
"type": "git",
"url": "https://github.com/KeitaMoromizato/mysql-to-bigquery.git"
},
"version": "1.0.14",
"description": "Data Transfer from MySQL to BigQuery",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir lib",
"watch": "babel src --out-dir lib --watch",
"prepublish": "npm run build"
},
"keywords": [
"bigquery",
"mysql"
],
"files": [
"lib/",
"index.js"
],
"author": "Keita Moromizato <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.34",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"espower-babel": "^3.3.0",
"mocha": "^2.3.4",
"power-assert": "^1.2.0"
},
"dependencies": {
"event-stream": "^3.3.2",
"gcloud": "^0.25.1",
"lodash": "^3.10.1",
"moment": "^2.10.6",
"mysql": "^2.9.0"
}
}