-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.35 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "virtuoso-connector",
"description": "Run SPARQL/SQL queries directly on Virtuoso database with connection pool support.",
"keywords": [
"virtuoso",
"virtuoso isql",
"virtuoso sparql",
"sparql"
],
"version": "1.0.3",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"homepage": "https://github.com/Tomas2D/virtuoso-connector#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Tomas2D/virtuoso-connector.git"
},
"bugs": {
"url": "https://github.com/Tomas2D/virtuoso-connector/issues"
},
"author": "Tomáš Dvořák <toomas2d@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rm -Rf lib; tsc -p tsconfig.build.json",
"eslint": "eslint \"{src,test}/**/*.ts\" --fix",
"prettier": "prettier --write \"src/**/*.ts\"",
"changelog": "npx gitmoji-changelog",
"release": "yarn version",
"version": "yarn changelog && code --wait CHANGELOG.md && git add README.md CHANGELOG.md",
"prepublishOnly": "yarn build",
"test": "ts-node node_modules/.bin/jest",
"test:coverage": "ts-node node_modules/.bin/jest --coverage"
},
"peerDependencies": {
"@naxmefy/jdbc": "^0.13.3",
"java": "^0.12.2",
"jsonstream2": "^3.0.0",
"lodash": ">=4.x",
"promise-based-task": "^3.0.2",
"rdf-data-factory": "^1.1.0"
},
"devDependencies": {
"@naxmefy/jdbc": "^0.13.3",
"@tpluscode/rdf-string": "^1.0.2",
"@tpluscode/sparql-builder": "^3.0.0",
"@types/jest": "^28.1.5",
"@types/lodash": "^4.14.182",
"@types/node": "^22.0.0",
"@types/readable-stream": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"dotenv": "^16.0.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.1",
"java": "^0.12.2",
"jest": "^28.1.0",
"jsonstream2": "^3.0.0",
"lint-staged": "^14.0.0",
"lodash": ">=4.x",
"prettier": "^3.0.0",
"promise-based-task": "^3.0.2",
"rdf-data-factory": "^1.1.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^5.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"resolutions": {
"async": ">=2.6.4"
}
}