This repository was archived by the owner on Nov 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@kronos-integration/interceptor-object-data-processor-row",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public"
},
"exports": {
".": "./src/interceptor.mjs"
},
"description": "Splits a line by a sparator into tokens.",
"keywords": [
"kronos-interceptor",
"line",
"parser",
"stream"
],
"contributors": [
{
"name": "Torsten Link",
"email": "torstenlink@gmx.de"
},
{
"name": "Markus Felten",
"email": "markus.felten@gmx.de"
}
],
"license": "BSD-2-Clause",
"scripts": {
"test": "npm run test:ava",
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
"docs": "documentation readme --section=API ./src/**/*.mjs",
"lint": "npm run lint:docs",
"lint:docs": "documentation lint ./src/**/*.mjs"
},
"dependencies": {
"@kronos-integration/interceptor": "^10.2.37",
"moment": "^2.29.4",
"z-schema": "6.0.1"
},
"devDependencies": {
"ava": "^5.3.1",
"c8": "^8.0.1",
"documentation": "^14.0.2",
"semantic-release": "^22.0.7",
"underscore": "^1.13.6"
},
"engines": {
"node": ">=20.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Kronos-Integration/interceptor-object-data-processor-row"
},
"bugs": {
"url": "https://github.com/Kronos-Integration/interceptor-object-data-processor-row/issues"
},
"homepage": "https://github.com/Kronos-Integration/interceptor-object-data-processor-row#readme",
"template": {
"inheritFrom": [
"arlac77/template-arlac77-github",
"arlac77/template-kronos-component"
]
}
}