-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.24 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
84
85
86
87
88
{
"name": "ldf-recorder",
"version": "1.1.0",
"description": "A tool for recording all HTTP- requests and responses when querying a TPF/ SPARQL endpoint",
"main": "index.js",
"repository": "https://github.com/comunica/ldf-recorder.git",
"author": "Manu De Buck <[email protected]>",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
},
"bugs": {
"url": "https://github.com/comunica/ldf-recorder/issues"
},
"homepage": "https://github.com/comunica/ldf-recorders#readme",
"contributors": [],
"bin": {
"ldf-recorder": "bin/Runner.js"
},
"files": [
"bin/**/*.d.ts",
"bin/**/*.js",
"bin/**/*.js.map",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.json",
"lib/**/*.js.map",
"index.d.ts",
"index.js.map",
"index.js"
],
"pre-commit": [
"build",
"lint",
"test"
],
"jest": {
"transform": {
"^.+\\.ts$": ["ts-jest", {}]
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"testEnvironment": "node"
},
"scripts": {
"test": "jest ${1}",
"test-watch": "jest ${1} --watch",
"lint": "eslint . --ext .ts --cache",
"build": "tsc",
"validate": "npm ls",
"prepare": "npm run build",
"version": "manual-git-changelog onversion"
},
"dependencies": {
"@comunica/query-sparql": "^4.0.2",
"@comunica/actor-query-result-serialize-sparql-json": "^4.0.2",
"@types/minimist": "^1.2.0",
"@types/n3": "^1.21.1",
"@types/nock": "^10.0.3",
"@types/node": "^20.2.5",
"minimist": "^1.2.0",
"nock": "^14.0.0-beta.15",
"stream-to-string": "^1.2.0"
},
"devDependencies": {
"@comunica/bindings-factory": "^3.3.0",
"@rubensworks/eslint-config": "^2.0.0",
"@types/jest": "^24.0.17",
"fs-extra": "^8.1.0",
"eslint": "^7.9.0",
"jest": "^29.5.0",
"jest-rdf": "^1.8.0",
"manual-git-changelog": "^1.0.1",
"pre-commit": "^1.2.2",
"rdf-quad": "^1.5.0",
"rdf-test-suite": "^1.24.0",
"ts-jest": "^29.1.0",
"typescript": "^4.3.5"
}
}