-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
83 lines (83 loc) · 2.32 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "quadstore",
"version": "15.0.0-beta.0",
"description": "Quadstore is a LevelDB-backed RDF graph database / triplestore for JavaScript runtimes (browsers, Node.js, Deno, Bun, ...) that implements the RDF/JS interfaces and supports SPARQL queries and querying across named graphs.",
"keywords": [
"node",
"deno",
"bun",
"browser",
"triplestore",
"quadstore",
"graph",
"rdf",
"store",
"level",
"leveldb",
"database",
"sparql",
"rdfjs",
"RDF/JS",
"triple",
"quad"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"watch": "npm run clean && tsc --watch",
"test:build": "cd test && tsc && cd browser && webpack -c webpack.config.cjs",
"test:node": "cd test && mocha node.js --reporter spec",
"test:browser": "cd test && node browser.js",
"test": "npm run test:build && npm run test:node && npm run test:browser",
"build": "npm run clean && tsc -p tsconfig.json",
"publish:alpha": "npm run build && npm publish --tag alpha",
"publish:beta": "npm run build && npm publish --tag beta"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/quadstorejs/quadstore.git"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/n3": "^1.21.1",
"@types/node-static": "^0.7.11",
"browser-level": "^2.0.0",
"chai": "^5.1.2",
"classic-level": "^2.0.0",
"expect.js": "^0.3.1",
"memory-level": "^2.0.0",
"mocha": "^10.8.2",
"n3": "^1.23.1",
"node-static": "^0.7.11",
"puppeteer": "^23.9.0",
"rdf-data-factory": "^1.1.2",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@rdfjs/types": "^1.1.2",
"abstract-level": "^2.0.1",
"asynciterator": "^3.9.0",
"js-sorted-set": "^0.7.0"
},
"author": "Jacopo Scazzosi <jacopo@scazzosi.com>",
"contributors": [
"Jacopo Scazzosi <jacopo@scazzosi.com>",
"Matteo Murgida <teomurgi@gmail.com>"
],
"engineStrict": true,
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"homepage": "https://github.com/quadstorejs/quadstore",
"bugs": "https://github.com/quadstorejs/quadstore/issues"
}