-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.71 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.71 KB
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
{
"name": "stream-hive",
"version": "1.0.0",
"description": "Combining Multiple Streaming Queries to provide actionable insights.",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint:ts": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"lint:ts:fix": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0 --fix",
"start:http:server": "npx ts-node src/startHTTPServer.ts"
},
"keywords": [],
"author": "Kushagra Singh Bisen",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/n3": "^1.24.2",
"@types/node": "^22.15.30",
"@typescript-eslint/parser": "^6.21.0",
"esdoc": "^1.1.0",
"eslint": "^8.56.0",
"eslint-plugin-jest": "^27.8.0",
"eslint-plugin-jsdoc": "^48.0.6",
"jest": "^29.3.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@comunica/query-sparql": "^4.1.0",
"@types/bunyan": "^1.8.11",
"@types/commander": "^2.12.5",
"bunyan": "^1.8.15",
"commander": "^13.1.0",
"crypto": "^1.0.1",
"csv-parse": "^5.6.0",
"eyereasoner": "^18.18.0",
"hive-scout-bee": "^1.2.1",
"hive-thought-rewriter": "^1.5.1",
"mqtt": "^5.12.0",
"n3": "^1.24.2",
"rsp-js": "file:../RSP-JS",
"rspql-containment-checker": "^2.7.0",
"rspql-query-isomorphism": "^2.0.0",
"sparqljs": "^3.7.3",
"streamify-string": "^1.0.1"
}
}