-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.14 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": "@florajs/datasource-csv",
"version": "4.0.0",
"description": "CSV data source for Flora",
"main": "lib/index.js",
"scripts": {
"test": "eslint . && mocha",
"lint": "eslint ."
},
"files": [
"lib/"
],
"pre-commit": "test",
"author": {
"name": "stock3 AG",
"email": "it@stock3.com"
},
"keywords": [
"florajs",
"csv"
],
"homepage": "https://github.com/florajs/datasource-csv",
"license": "MIT",
"repository": "florajs/datasource-csv",
"contributors": [
{
"name": "Marco Baumgartl",
"email": "marco.baumgartl@stock3.com"
},
{
"name": "Nico Kaiser",
"email": "nico.kaiser@stock3.com"
},
{
"name": "Mark Plomer",
"email": "mark.plomer@stock3.com"
}
],
"engines": {
"node": ">=16"
},
"dependencies": {
"csv-parse": "^5.4.0",
"@florajs/errors": "^4.0.0"
},
"devDependencies": {
"abstract-logging": "^2.0.1",
"chai": "^4.3.7",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"pre-commit": "^1.2.2",
"prettier": "^3.0.1"
}
}