-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "barnard59-formats",
"version": "4.0.0",
"description": "Support for various formats for Barnard59 Linked Data pipelines",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha",
"prebuild": "rimraf -g *.d.ts lib/*.d.ts",
"build": "tsc",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/zazuko/barnard59.git",
"directory": "packages/formats"
},
"keywords": [],
"author": "Zazuko GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/zazuko/barnard59/issues"
},
"homepage": "https://github.com/zazuko/barnard59",
"dependencies": {
"@opentelemetry/api": "^1.0.1",
"@rdfjs/parser-jsonld": "^2.1.0",
"@rdfjs/parser-n3": "^2.0.1",
"@rdfjs/serializer-jsonld": "^2.0.0",
"@rdfjs/serializer-ntriples": "^2.0.0",
"@rdfjs/sink-to-duplex": "^1.0.0",
"barnard59-base": "^2.0.1",
"is-stream": "^3.0.0",
"@zazuko/rdf-parser-csvw": "^0.17.0",
"@zazuko/rdf-parser-csvw-xlsx": "^0.3",
"rdfxml-streaming-parser": "^1.2.0"
},
"devDependencies": {
"@types/rdfjs__sink-to-duplex": "^1.0.0",
"@types/rdfjs__parser-jsonld": "^2.1.7",
"@types/sax": "^1.2.7",
"@zazuko/env-core": "^1.1.2",
"barnard59-env": "^1.2.6",
"chai": "^4.3.7"
},
"engines": {
"node": ">= 14.0.0"
},
"mocha": {
"loader": "ts-node/esm/transpile-only"
}
}