-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.69 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
{
"name": "@rdfc/sds-processors-ts",
"version": "1.2.2",
"type": "module",
"scripts": {
"build": "tspc && tsc-alias",
"prepublishOnly": "tsc",
"test": "vitest run --coverage --coverage.include lib",
"prepare": "husky"
},
"main": "./lib/index.js",
"files": [
"lib/**/*",
"js/**/*",
"configs/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rdf-connect/sds-processors.git"
},
"author": "Arthur Vercruysse",
"contributors": [
"Julián Rojas",
"Ieben Smessaert"
],
"license": "MIT",
"dependencies": {
"@treecg/types": "^0.4.6",
"csv-parse": "^5.6.0",
"extract-cbd-shape": "^0.1.11",
"jsonld": "^8.3.3",
"n3": "^1.23.1",
"rdf-canonize": "^4.0.1",
"rdf-data-factory": "^1.1.3",
"rdf-lens": "^1.3.5",
"rdf-stores": "^1.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@ajuvercr/ts-transformer-inline-file": "^0.2.0",
"@rdfc/js-runner": "^1.0.0",
"@rdfjs/types": "^1.1.2",
"@types/jsonld": "^1.5.15",
"@types/n3": "^1.21.1",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@vitest/coverage-v8": "^3.0.4",
"dotenv": "^16.4.7",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"memfs": "^4.17.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"ts-patch": "^3.3.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.4"
},
"optionalDependencies": {
"@esbuild/darwin-arm64": "^0.24.2",
"@rollup/rollup-linux-x64-gnu": "^4.32.1"
}
}