-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.49 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
{
"name": "rdf-streaming-store",
"version": "1.1.5",
"description": "A read-only RDF/JS store that allows parallel data lookup and insertion.",
"keywords": [
"rdf",
"rdfjs",
"store",
"source",
"stream",
"streaming"
],
"main": "index.js",
"typings": "index",
"repository": "[email protected]:comunica/rdf-streaming-store.js.git",
"author": "Maarten Vandenbrande <[email protected]>",
"bugs": {
"url": "https://github.com/comunica/rdf-streaming-store.js/issues"
},
"homepage": "https://github.com/comunica/rdf-streaming-store.js#readme",
"license": "MIT",
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.js.map",
"index.d.ts",
"index.js.map",
"index.js"
],
"dependencies": {
"n3": "^1.16.3",
"rdf-terms": "^1.9.1",
"rdf-string": "^1.6.2",
"readable-stream": "^4.3.0",
"@rdfjs/types": "*",
"@types/n3": "^1.10.4",
"@types/readable-stream": "^4.0.15"
},
"pre-commit": [
"build",
"lint",
"test"
],
"devDependencies": {
"@rubensworks/eslint-config": "^1.1.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"arrayify-stream": "^2.0.1",
"coveralls": "^3.0.0",
"eslint": "^8.32.0",
"jest": "^29.0.0",
"jest-rdf": "^1.5.0",
"manual-git-changelog": "^1.0.0",
"pre-commit": "^1.2.2",
"event-emitter-promisify": "^1.1.0",
"rdf-data-factory": "^1.1.1",
"rdf-quad": "^1.5.0",
"streamify-array": "^1.0.1",
"ts-jest": "^29.0.0",
"ts-loader": "^9.3.1",
"typescript": "^5.0.0",
"webpack": "^5.73.0",
"webpack-cli": "^5.0.0"
},
"jest": {
"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": {
"test": "jest ${1}",
"test-watch": "jest ${1} --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint . --ext .ts --cache",
"build": "tsc",
"validate": "npm ls",
"prepare": "npm run build",
"version": "manual-git-changelog onversion"
},
"resolutions": {
"@types/rdf-js": "4.0.1"
}
}