-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "rdf-store-fs",
"version": "2.0.2",
"description": "File System RDF Store that follows the RDFJS Store interface specification",
"type": "module",
"main": "index.js",
"scripts": {
"test": "stricter-standard && c8 --reporter=lcov --reporter=text-summary mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/rdf-ext/rdf-store-fs.git"
},
"keywords": [
"fs",
"file",
"rdf",
"rdfjs",
"store"
],
"author": "Thomas Bergwinkl <[email protected]> (https://www.bergnet.org/people/bergi/card#me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdf-ext/rdf-store-fs/issues"
},
"homepage": "https://github.com/rdf-ext/rdf-store-fs",
"dependencies": {
"glob": "^11.0.0",
"multistream": "^4.1.0",
"rdf-ext": "^2.5.1",
"rdf-stream-filter": "^2.0.0",
"rdf-stream-to-dataset-stream": "^1.0.0",
"readable-stream": "^4.5.2"
},
"devDependencies": {
"c8": "^10.0.0",
"mkdirp": "^3.0.1",
"mocha": "^11.0.1",
"rimraf": "^6.0.1",
"stricter-standard": "^0.3.1"
}
}