-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "@rdfjs/parser-jsonld",
"version": "2.1.3",
"description": "JSON-LD parser that implements the RDFJS Sink interface using jsonld.js",
"type": "module",
"main": "index.js",
"scripts": {
"test": "stricter-standard && c8 --reporter=lcov --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/rdfjs-base/parser-jsonld.git"
},
"keywords": [
"rdf",
"rdfjs",
"parser",
"jsonld"
],
"author": "Thomas Bergwinkl <bergi@axolotlfarm.org> (https://www.bergnet.org/people/bergi/card#me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdfjs-base/parser-jsonld/issues"
},
"homepage": "https://github.com/rdfjs-base/parser-jsonld",
"dependencies": {
"@rdfjs/data-model": "^2.0.2",
"@rdfjs/sink": "^2.0.1",
"duplex-to": "^2.0.0",
"jsonld-streaming-parser": "^5.0.0",
"readable-stream": "^4.5.2"
},
"devDependencies": {
"assert": "^2.1.0",
"c8": "^10.0.0",
"is-stream": "^4.0.1",
"mocha": "^11.0.1",
"stream-chunks": "^1.0.0",
"stricter-standard": "^0.3.0"
}
}