This repository has been archived by the owner on Nov 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.33 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
108
109
110
111
112
113
114
115
116
{
"name": "@comunica/actor-rdf-resolve-quad-pattern-ostrich",
"version": "1.2.0",
"description": "An OSTRICH rdf-resolve-quad-pattern actor",
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-rdf-resolve-quad-pattern-ostrich",
"lsd:components": "components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-rdf-resolve-quad-pattern-ostrich/^1.0.0/components/context.jsonld": "components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-rdf-resolve-quad-pattern-ostrich/^1.0.0/components/": "components/"
},
"main": "index.js",
"typings": "index",
"repository": {
"type": "git",
"url": "git+https://github.com/rdfostrich/comunica-actor-rdf-resolve-quad-pattern-ostrich.git"
},
"keywords": [
"comunica",
"actor",
"rdf-resolve-quad-pattern",
"ostrich"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rdfostrich/comunica-actor-rdf-resolve-quad-pattern-ostrich/issues"
},
"homepage": "https://comunica.dev/",
"files": [
"components",
"lib/**/*.d.ts",
"lib/**/*.js",
"index.d.ts",
"index.js"
],
"dependencies": {
"@types/node": "^13.1.0",
"ostrich-bindings": "^1.2.3",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0"
},
"peerDependencies": {
"@comunica/bus-rdf-resolve-quad-pattern": "^1.17.0",
"@comunica/core": "^1.17.0"
},
"devDependencies": {
"@comunica/bus-rdf-resolve-quad-pattern": "^2.0.0",
"@comunica/core": "^2.0.0",
"@rubensworks/eslint-config": "^1.0.0",
"@types/jest": "^28.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"arrayify-stream": "^2.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": "^28.0.0",
"manual-git-changelog": "^1.0.0",
"pre-commit": "^1.2.2",
"rdf-quad": "^1.5.0",
"sparqlalgebrajs": "^4.0.0",
"ts-jest": "^28.0.0",
"typescript": "^4.0.0"
},
"pre-commit": [
"build",
"lint",
"test"
],
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "test/tsconfig.json"
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"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"
}
}