-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
100 lines (100 loc) · 2.67 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "graphdb",
"version": "3.1.0-RC1",
"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": ">=8.16.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",
"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"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"minimist": "^1.2.8",
"sonarqube-scanner": "^3.3.0",
"stream-mock": "^2.0.5",
"webpack": "5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.6.5",
"base64url": "^3.0.1",
"eslint-config-google": "^0.14.0",
"jsonld-streaming-parser": "^3.3.0",
"n3": "^1.17.2",
"pino": "^8.17.2",
"qs": "^6.11.2",
"rdfxml-streaming-parser": "^2.4.0",
"sparqljson-parse": "^2.2.0",
"sparqlxml-parse": "^2.1.1",
"typescript": "^5.1.6",
"uuid": "^9.0.1"
}
}