-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.34 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
50
51
52
53
54
55
56
{
"name": "tables",
"version": "0.0.6",
"description": "Tables is a simple command-line tool and powerful library for importing data like a CSV or JSON file into relational tables.",
"main": "index.js",
"bin": {
"tables": "bin/tables"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha tests/*",
"example-water": "./bin/tables -i examples/nyc-water-quality-complaints.csv"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datanews/tables.git"
},
"keywords": [
"CSV",
"JSON",
"SQL"
],
"author": "Alan Palazzolo",
"license": "MIT",
"bugs": {
"url": "https://github.com/datanews/tables/issues"
},
"homepage": "https://github.com/datanews/tables#readme",
"engines": {
"node": ">=8"
},
"dependencies": {
"chalk": "^1.1.1",
"cli-spinner": "^0.2.4",
"commander": "^2.9.0",
"csv-parse": "^4.4.6",
"d3-queue": "^2.0.3",
"dotenv": "^2.0.0",
"event-stream": "^3.3.2",
"lodash": "^4.6.1",
"merge2": "^1.0.1",
"moment-timezone": "^0.5.1",
"mysql": "^2.10.2",
"pg": "^4.5.1",
"pg-hstore": "^2.3.2",
"progress": "^1.1.8",
"sequelize": "^5.15.1",
"sqlite3": "^4.0.0",
"tito": "^0.4.0",
"unpipe": "^1.0.0"
},
"devDependencies": {
"byline": "^4.2.1",
"mocha": "5.0.3",
"test-console": "^1.0.0"
}
}