-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 991 Bytes
/
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
{
"name": "csv2influx",
"version": "1.0.0",
"description": "Tool for importing data from csv file to influxdb",
"main": "index.js",
"bin": {
"csv2influx": "index.js"
},
"scripts": {
"dev": "node --inspect index.js --config examples/traffic-violations.conf.json examples/traffic-violations.csv",
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CorpGlory/csv2influx.git"
},
"keywords": [
"influxdb",
"csv",
"import",
"converter",
"influxdb"
],
"author": "CorpGlory Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/CorpGlory/csv2influx/issues"
},
"homepage": "https://github.com/CorpGlory/csv2influx#readme",
"dependencies": {
"csv-parse": "^4.11.1",
"influxdb-nodejs": "^2.11.0",
"minimist": "^1.2.5",
"progress": "^2.0.0",
"stream-transform": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^8.1.0"
}
}