forked from agmen-hu/node-datapumps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 KB
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
{
"name": "datapumps",
"description": "Node.js ETL (Extract, Transform, Load) toolkit for easy data import, export or transfer between systems.",
"licence": "MIT",
"author": {
"name": "Szilard Novaki",
"email": "novaki@agmen.hu",
"url": "https://github.com/novaki"
},
"homepage": "https://github.com/agmen-hu/node-datapumps",
"repository": {
"type": "git",
"url": "https://github.com/agmen-hu/node-datapumps"
},
"bugs": {
"url": "https://github.com/agmen-hu/node-datapumps/issues"
},
"version": "0.5.1",
"dependencies": {
"bluebird": "^2.2.2",
"coffee-script": "^1.7.1",
"excel4node": "~0.0.9",
"fast-csv": "~0.5.2",
"mongodb": "^2.2.24",
"mysql": "~2.5.1",
"pg": "^6.1.5",
"restler": "~3.2.2",
"xlsx": "~0.7.8"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cafe-mocha": "~0.1.12",
"grunt-contrib-coffee": "~0.11.1",
"grunt-contrib-watch": "~0.6.1",
"mocha": "~1.21.3",
"should": "~4.0.4",
"sinon": "~1.10.3"
},
"scripts": {
"prepublish": "coffee --no-header -o lib -c src",
"test": "mocha --compilers coffee:coffee-script/register src/spec src/mixin/spec"
},
"keywords": [
"etl",
"import",
"export",
"batch",
"excel",
"xlsx",
"rest"
]
}