-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.53 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
57
58
59
60
61
62
{
"name": "@rdfc/sds-storage-writer-ts",
"version": "1.0.2",
"description": "An RDF-Connect processor to write SDS streams into a given storage system",
"type": "module",
"main": "lib/index.js",
"scripts": {
"build": "tspc && tsc-alias",
"test": "vitest run --coverage --coverage.include src",
"prepublishOnly": "tsc"
},
"files": [
"lib/**/*",
"processor.ttl"
],
"keywords": [
"SDS",
"TREE",
"LDES",
"MongoBD",
"RDF-Connect"
],
"author": "Arthur Vercruysse",
"contributors": [
"Julián Rojas",
"Pieter Colpaert",
"Ieben Smessaert"
],
"license": "MIT",
"devDependencies": {
"@ajuvercr/ts-transformer-inline-file": "^0.2.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@rdfc/js-runner": "^1.0.0-alpha.0",
"@types/n3": "^1.16.5",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"mongodb-memory-server": "^10.0.0",
"prettier": "^3.3.3",
"ts-alias": "^0.0.7",
"ts-patch": "^3.2.1",
"typescript": "^5.5.4",
"vitest": "^2.1.1"
},
"dependencies": {
"@treecg/types": "^0.4.6",
"async-await-mutex-lock": "^1.0.11",
"mongodb": "^6.8.0",
"n3": "^1.21.0",
"rdf-canonize": "^4.0.1",
"rdf-lens": "^1.3.0",
"redis": "^4.7.0",
"winston": "^3.14.2"
}
}