forked from rdf-ext/sparql-http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 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
{
"name": "sparql-http-client",
"version": "2.4.2",
"description": "Simplified SPARQL HTTP request client",
"main": "index.js",
"scripts": {
"test": "standard && nyc --reporter=lcov mocha",
"docs:serve": "docsify serve docs"
},
"repository": {
"type": "git",
"url": "https://github.com/bergos/sparql-http-client.git"
},
"keywords": [
"sparql",
"http",
"rdf"
],
"author": "Thomas Bergwinkl <bergi@axolotlfarm.org> (https://www.bergnet.org/people/bergi/card#me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bergos/sparql-http-client/issues"
},
"homepage": "https://bergos.github.io/sparql-http-client/",
"dependencies": {
"@rdfjs/data-model": "^1.1.2",
"@rdfjs/parser-n3": "^1.1.3",
"@rdfjs/to-ntriples": "^1.0.2",
"get-stream": "^5.1.0",
"jsonstream2": "^3.0.0",
"lodash": "^4.17.15",
"nodeify-fetch": "^2.2.0",
"promise-the-world": "^1.0.1",
"rdf-transform-triple-to-quad": "^1.0.2",
"readable-stream": "^3.5.0",
"separate-stream": "^1.0.0"
},
"devDependencies": {
"@rdfjs/dataset": "^1.0.1",
"@rdfjs/namespace": "^1.1.0",
"body-parser": "^1.19.0",
"docsify-cli": "^4.4.0",
"express-as-promise": "0.0.1",
"get-stream": "^5.1.0",
"husky": "^4.2.5",
"into-stream": "^5.1.1",
"isstream": "^0.1.2",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"rdf-dataset-ext": "^1.0.0",
"rdf-ext": "^1.3.0",
"standard": "^14.3.1"
},
"husky": {
"hooks": {
"pre-commit": "jsdoc2md --no-gfm -f *.js lib/* > docs/api.md; git add docs/api.md"
}
}
}