-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.68 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.68 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "graphdb",
"version": "4.0.0-SNAPSHOT",
"description": "Javascript client library supporting GraphDB and RDF4J REST API.",
"author": {
"name": "\"Sirma AI\" JSC, trading as Ontotext",
"url": "https://www.ontotext.com/"
},
"contributors": [
{
"name": "Desislava Hristova",
"email": "desislava.hristova@ontotext.com"
},
{
"name": "Mihail Radkov",
"email": "mihail.radkov@ontotext.com"
},
{
"name": "Svilen Velikov",
"email": "svilen.velikov@ontotext.com"
},
{
"name": "Teodossi Dossev",
"email": "teodossi.dossev@ontotext.com"
}
],
"homepage": "https://github.com/Ontotext-AD/graphdb.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Ontotext-AD/graphdb.js"
},
"bugs": {
"url": "https://github.com/Ontotext-AD/graphdb.js/issues"
},
"keywords": [
"rdf4j",
"rdfjs",
"graphdb",
"javascript",
"rdf4j api",
"rest"
],
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.17.0"
},
"scripts": {
"build": "node ./scripts/build.js && npm run doc && npm run tsd",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:report": "rimraf coverage/ && jest --config jest-report.config.js",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"lint:test": "eslint --no-eslintrc --config .eslintrc-test ./test",
"doc": "jsdoc -c jsdoc.conf.json",
"tsd": "tsc && node scripts/generate-types.js",
"install:local": "npm pack && npm install -g ./$npm_package_name-$npm_package_version.tgz",
"install:e2e": "cd test-e2e/ && npm clean-install && npm link graphdb",
"e2e:local": "npm run install:local && npm run install:e2e",
"e2e:run": "npm run e2e:local && cd test-e2e/ && npm run test",
"e2e:test:docker": "sh ./scripts/run-e2e.sh"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.4",
"minimist": "^1.2.8",
"sonarqube-scanner": "^3.3.0",
"stream-mock": "^2.0.5"
},
"dependencies": {
"axios": "^1.8.4",
"base64url": "^3.0.1",
"jsonld-streaming-parser": "^5.0.0",
"n3": "^1.24.2",
"pino": "^8.21.0",
"qs": "^6.14.0",
"rdfxml-streaming-parser": "^3.0.1",
"sparqljson-parse": "^3.0.0",
"sparqlxml-parse": "^3.0.0",
"typescript": "^5.8.2",
"uuid": "^9.0.1"
}
}