-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "@rdfjs/formats",
"version": "4.0.1",
"description": "Bundle of RDF/JS parsers and serializers",
"type": "module",
"main": "index.js",
"scripts": {
"test": "stricter-standard && c8 --reporter=lcov --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/rdfjs-base/formats.git"
},
"keywords": [
"rdf",
"rdfjs",
"format",
"parser",
"serializer"
],
"author": "Thomas Bergwinkl <[email protected]> (https://www.bergnet.org/people/bergi/card#me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdfjs-base/formats/issues"
},
"homepage": "https://github.com/rdfjs-base/formats",
"dependencies": {
"@rdfjs/parser-jsonld": "^2.1.0",
"@rdfjs/parser-n3": "^2.0.1",
"@rdfjs/serializer-jsonld": "^2.0.0",
"@rdfjs/serializer-jsonld-ext": "^4.0.0",
"@rdfjs/serializer-ntriples": "^2.0.0",
"@rdfjs/serializer-turtle": "^1.1.1",
"@rdfjs/sink-map": "^2.0.0",
"rdfxml-streaming-parser": "^3.0.1"
},
"devDependencies": {
"@rdfjs/environment": "^1.0.0",
"c8": "^10.0.0",
"mocha": "^11.0.1",
"stricter-standard": "^0.3.0"
}
}