-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "sparql-benchmark-runner",
"version": "4.4.0",
"packageManager": "[email protected]",
"description": "Executes a query set against a given SPARQL endpoint",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
},
"homepage": "https://github.com/comunica/sparql-benchmark-runner.js#readme",
"repository": "https://github.com/comunica/sparql-benchmark-runner.js",
"bugs": {
"url": "https://github.com/comunica/sparql-benchmark-runner.js/issues"
},
"keywords": [
"sparql",
"benchmark",
"runner"
],
"main": "lib/index.js",
"bin": {
"sparql-benchmark-runner": "./bin/sparql-benchmark-runner"
},
"typings": "lib/index",
"files": [
"bin/**/*.d.ts",
"bin/**/*.js",
"bin/**/*.js.map",
"bin/sparql-benchmark-runner",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.js.map",
"lib/**/*.json"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint .",
"prepare": "husky",
"version": "manual-git-changelog onversion"
},
"dependencies": {
"fetch-sparql-endpoint": "^5.1.0",
"rdf-string": "^1.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"@rubensworks/eslint-config": "^3.0.0",
"@types/jest": "^29.0.0",
"@types/yargs": "^17.0.0",
"eslint": "^8.0.0",
"fs-extra": "^9.0.0",
"husky": "^9.0.0",
"jest": "^29.0.0",
"manual-git-changelog": "^1.0.0",
"streamify-array": "^1.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
}
}