-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "queryoncsv",
"version": "1.0.8",
"description": "A small tool to execute sqlite3 queries on csv files",
"main": "dist/index.js",
"scripts": {
"live-compile": "./node_modules/.bin/tsc -w",
"postinstall": "tsc",
"start": "node dist/index.js"
},
"bin": {
"queryoncsv": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saildeep/queryoncsv.git"
},
"keywords": [
"csv",
"data",
"query",
"sql",
"sqlite3"
],
"author": "Jonas Körner",
"license": "MIT",
"bugs": {
"url": "https://github.com/saildeep/queryoncsv/issues"
},
"homepage": "https://github.com/saildeep/queryoncsv#readme",
"dependencies": {
"@types/async": "^2.0.47",
"@types/command-line-args": "^4.0.2",
"@types/csv-parse": "^1.1.11",
"@types/iconv-lite": "0.0.1",
"@types/node": "^9.4.6",
"@types/sqlite3": "^3.1.1",
"async": "^2.6.0",
"command-line-args": "^5.0.2",
"command-line-usage": "^4.1.0",
"csv-parse": "^2.0.4",
"csv-write-stream": "^2.0.0",
"iconv-lite": "^0.4.19",
"sqlite3": "^3.1.13",
"typescript": "^2.7.2"
}
}