-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.82 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.82 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@rdfc/http-utils-processor-ts",
"version": "1.1.0",
"description": "HTTP util functions to be used within RDF-Connect",
"type": "module",
"scripts": {
"build": "tsc && tsc-alias",
"test": "vitest run --coverage --coverage.include src",
"pretest": "tsc && tsc-alias",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"files": [
"lib/**/*",
"./processors.ttl"
],
"keywords": [
"HTTP",
"RDF-Connect"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rdf-connect/http-utils-processor-ts.git"
},
"author": "Jens Pots",
"contributors": [
"Arthur Vercruysse",
"Ieben Smessaert",
"Julián Rojas"
],
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@rdfc/js-runner": "^3.0.3",
"@types/bun": "^1.3.10",
"@types/jsdom": "^28.0.0",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"jsdom": "^28.1.0",
"prettier": "3.8.1",
"supertest": "^7.2.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.0"
},
"dependencies": {
"@node-oauth/express-oauth-server": "^4.1.5",
"@node-oauth/oauth2-server": "^5.2.1",
"cron": "^4.4.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"ts-node": "^10.9.2",
"winston": "^3.19.0"
}
}