This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.72 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@comunica/actor-rdf-resolve-quad-pattern-hdt",
"version": "1.8.0",
"description": "A hdt rdf-resolve-quad-pattern actor",
"lsd:module": true,
"main": "index.js",
"typings": "index",
"repository": {
"type": "git",
"url": "https://github.com/comunica/comunica-actor-rdf-resolve-quad-pattern-hdt.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"comunica",
"actor",
"rdf-resolve-quad-pattern",
"hdt"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/comunica/comunica-actor-rdf-resolve-quad-pattern-hdt/issues"
},
"homepage": "https://comunica.dev/",
"files": [
"components",
"lib/**/*.d.ts",
"lib/**/*.js",
"index.d.ts",
"index.js"
],
"dependencies": {
"@types/node": "^13.1.6",
"hdt": "^3.0.2",
"rdf-data-factory": "^1.0.3"
},
"peerDependencies": {
"@comunica/bus-rdf-resolve-quad-pattern": "^1.19.0",
"@comunica/core": "^1.19.0"
},
"devDependencies": {
"@comunica/bus-rdf-resolve-quad-pattern": "^1.19.0",
"@comunica/core": "^1.19.0",
"@rubensworks/eslint-config": "^3.0.0",
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"arrayify-stream": "^1.0.0",
"asynciterator": "^3.0.3",
"coveralls": "^3.0.0",
"eslint": "^7.11.0",
"eslint-config-es": "^3.24.3",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-tsdoc": "^0.2.7",
"eslint-plugin-unused-imports": "^1.0.0",
"jest": "^29.0.0",
"manual-git-changelog": "^1.0.1",
"pre-commit": "^1.2.2",
"rdf-quad": "^1.5.0",
"sparqlalgebrajs": "^4.0.0",
"ts-jest": "^26.0.0",
"typescript": "^5.0.0"
},
"pre-commit": [
"build",
"lint",
"test"
],
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/mocks"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"scripts": {
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"coveralls-ci": "cat ./coverage/lcov.info | coveralls",
"test": "jest ${1}",
"test-watch": "jest ${1} --watch",
"test-ci": "jest --ci --maxWorkers=4 --coverage",
"lint": "eslint . --ext .ts --cache",
"build": "tsc",
"validate": "npm ls",
"prepare": "npm run build",
"version": "manual-git-changelog onversion"
}
}