-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "@rdfc/http-utils-processor-ts",
"version": "0.0.3",
"description": "HTTP util functions to be used within the Connector Architecture",
"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",
"Connector Architecture"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rdf-connect/http-utils-processor-ts.git"
},
"author": "Jens Pots",
"devDependencies": {
"@rdfc/js-runner": "^0.2.2",
"@types/bun": "^1.2.1",
"@types/jsdom": "^21.1.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jsdom": "^24.1.3",
"prettier": "3.4.2",
"supertest": "^6.3.4",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"dependencies": {
"@node-oauth/express-oauth-server": "^4.1.2",
"@node-oauth/oauth2-server": "^5.2.0",
"cron": "^3.5.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"ts-node": "^10.9.2",
"winston": "^3.17.0"
}
}