-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 KB
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
{
"name": "@rdfc/skolemization-processor-ts",
"version": "1.0.0",
"description": "RDF-Connect processor to map entities with blank node identifiers to equivalents with named node identifiers",
"type": "module",
"main": "lib/index.js",
"files": [
"lib/**/*",
"./processor.ttl"
],
"scripts": {
"build": "tsc && tsc-alias",
"test": "vitest run --coverage --coverage.include src",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/rdf-connect/skolemization-processor-ts"
},
"author": "Ieben Smessaert",
"license": "MIT",
"devDependencies": {
"@rdfjs/types": "^2.0.1",
"@types/rdf-ext": "^2.5.2",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"@vitest/coverage-v8": "^4.1.5",
"dotenv": "^17.4.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.5"
},
"dependencies": {
"@rdfc/js-runner": "^3.1.0",
"@rdfjs/serializer-turtle": "^1.1.5",
"rdf-ext": "^2.6.0",
"uuid": "^14.0.0",
"winston": "^3.19.0"
}
}