forked from agmen-hu/node-datapumps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "@redisrupt/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": "[email protected]",
"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.7.1",
"dependencies": {
"@redisrupt/xlsx": "^0.15.0",
"bluebird": "2.11.0",
"excel4node": "0.0.10",
"fast-csv": "0.5.7",
"restler": "3.4.0"
},
"devDependencies": {
"coffee-script": "^1.7.1",
"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"
]
}