-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
{
"name": "@rdfc/sds-processors-ts",
"version": "1.1.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.5.6",
"extract-cbd-shape": "^0.1.8",
"jsonld": "^8.3.2",
"n3": "^1.23.0",
"rdf-canonize": "^4.0.1",
"rdf-data-factory": "^1.1.2",
"rdf-lens": "^1.3.0",
"rdf-stores": "^1.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@ajuvercr/ts-transformer-inline-file": "^0.2.0",
"@rdfc/js-runner": "^1.0.0-alpha.0",
"@rdfjs/types": "^1.1.2",
"@types/jsonld": "^1.5.15",
"@types/n3": "^1.21.1",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^2.1.5",
"dotenv": "^16.4.5",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.5"
}
}