-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.88 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.88 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
52
53
54
55
56
57
58
59
60
{
"name": "nectar-bee",
"version": "1.0.0",
"description": "Distilling the difference to find the nectar for SPARQL-RSPQL queries.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rimraf dist",
"dev": "ts-node example.ts",
"experiment": "ts-node experiments/sparql-performance-complete.ts",
"experiment-multirun": "ts-node experiments/sparql-performance-multirun.ts",
"experiment-multirun-gc": "node --expose-gc -r ts-node/register experiments/sparql-performance-multirun.ts",
"experiment-realistic": "node --expose-gc -r ts-node/register experiments/sparql-performance-realistic.ts",
"plot-memory": "python3 plot_memory_analysis.py",
"plot-cpu": "python3 plot_cpu_analysis.py",
"plot-performance": "python3 plot_performance_comparison.py",
"plot-comprehensive": "python3 plot_comprehensive_results.py",
"plot-all": "npm run plot-performance && npm run plot-memory && npm run plot-cpu",
"start": "node dist/index.js",
"prepare": "npm run build"
},
"keywords": [
"sparql",
"rspql",
"query",
"typescript"
],
"author": "",
"license": "ISC",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.19.17",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"dependencies": {
"@comunica/query-sparql": "^3.0.0",
"@comunica/query-sparql-file": "^3.0.0",
"n3": "^1.17.2"
}
}