-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "databridge",
"version": "1.5.7",
"description": "Data bridging software to modularize, automate and schedule the transfer of data between different sources and destinations.",
"keywords": [
"data",
"databridge",
"transfer",
"bridge",
"bridging",
"sql",
"mongo",
"TSQL",
"Oracle",
"MySQL",
"csv",
"xlsx",
"excel",
"sql server"
],
"bugs": "https://github.com/psalmody/databridge/issues",
"main": "index.js",
"scripts": {
"test": "mocha spec",
"start": "node app",
"clean": "node bin/clean",
"service-start": "pm2 start pm2.json",
"service-stop": "pm2 stop pm2.json",
"service-restart": "pm2 restart pm2.json",
"postinstall": "node setup",
"lint": "eslint -c .eslintrc.js **/*.js"
},
"author": "Michael A Smith @psalmody <psalmody@gmail.com> (http://psalmody.net)",
"license": "MIT",
"repository": "https://github.com/psalmody/databridge",
"dependencies": {
"async": "^2.0.1",
"chrono-node": "^1.3.1",
"cli-spinner": "^0.2.5",
"colors": "^1.1.2",
"commander": "^2.9.0",
"csv-stringify": "^1.0.4",
"graceful-fs": "^4.1.5",
"grunt-jsbeautifier": "^0.2.13",
"inquirer": "^1.1.2",
"mkdirp": "^0.5.1",
"moment": "^2.18.1",
"mongodb": "^2.2.5",
"mssql": "^3.3.0",
"mysql": "^2.11.1",
"node-schedule": "^1.1.1",
"prepend-file": "^1.3.0",
"prompt": "^1.0.0",
"rimraf": "^2.5.4",
"split": "^1.0.0",
"tmp": "0.0.31",
"xlsx": "^0.10.0"
},
"devDependencies": {
"chai": "^3.5.0",
"grunt": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-jsbeautifier": "^0.2.12",
"grunt-lineending": "^1.0.0",
"grunt-prettify": "^0.4.0",
"mock-stdin": "^0.3.1"
}
}