forked from Ontotext-AD/graphdb.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.38 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.38 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
{
"name": "graphdbjs",
"version": "1.0.0",
"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"
}
],
"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",
"typings": "lib/index.d.ts",
"files": [
"lib/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=8.16.0"
},
"scripts": {
"build": "node scripts/build.js",
"postbuild": "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",
"test:coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint ./src",
"lint:test": "eslint --no-eslintrc --config .eslintrc-test ./test",
"doc": "jsdoc -c jsdoc.conf.json",
"tsd": "jsdoc src/ -r -t node_modules/tsd-jsdoc/dist -d lib/"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"eslint-plugin-no-only-tests": "^2.3.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"jest-when": "^2.4.0",
"jsdoc": "^3.6.2",
"stream-mock": "^2.0.2",
"tsd-jsdoc": "^2.1.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"axios": "^0.18.0",
"n3": "^1.0.5",
"qs": "^6.7.0",
"sparqljson-parse": "^1.5.0",
"sparqlxml-parse": "^1.2.1",
"pino": "^5.12.4",
"uuid": "^3.3.2"
}
}