-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "@rdfc/file-utils-processors-ts",
"version": "0.6.0",
"description": "File util functions to be used within the RDF-Connect ecosystem",
"type": "module",
"scripts": {
"build": "tsc && tsc-alias",
"prepublishOnly": "tsc",
"test": "vitest run --coverage --coverage.include src",
"watch": "tsc -w"
},
"files": [
"lib/**/*",
"./processors.ttl"
],
"keywords": [
"Files",
"RDF-Connect"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rdf-connect/file-utils-processors-ts.git"
},
"author": "Julián Rojas",
"contributors": [
"Arthur Vercruysse",
"Ieben Smessaert"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rdf-connect/file-utils-processors-ts/issues"
},
"homepage": "https://github.com/rdf-connect/file-utils-processors-ts#readme",
"dependencies": {
"@rdfc/js-runner": "^1.0.0",
"adm-zip": "^0.5.16",
"glob": "^11.0.1",
"gunzip-maybe": "^1.4.2",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@types/adm-zip": "^0.5.7",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
}
}