-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "csv-component",
"description": "CSV Component for elastic.io platform",
"main": "index.js",
"scripts": {
"pretest": "eslint lib/ spec --fix",
"test": "nyc mocha spec",
"integration-test": "mocha spec-integration"
},
"engines": {
"node": "18.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elasticio/csv-component.git"
},
"keywords": [
"csv",
"elastic.io",
"ipaas"
],
"author": "elastic.io GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/elasticio/csv-component/issues"
},
"homepage": "https://github.com/elasticio/csv-component-v3#readme",
"dependencies": {
"@elastic.io/component-commons-library": "3.2.0",
"elasticio-node": "0.0.9",
"elasticio-sailor-nodejs": "2.7.2",
"papaparse": "5.4.1"
},
"devDependencies": {
"chai": "4.3.4",
"eslint": "7.29.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-mocha": "9.0.0",
"mocha": "10.0.0",
"nock": "13.5.4",
"nyc": "15.1.0",
"sinon": "9.2.2"
}
}