-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "sparql-http-client",
"version": "3.0.1",
"description": "Simplified SPARQL HTTP request client",
"type": "module",
"main": "index.js",
"scripts": {
"build:docs": "jsdoc2md --no-gfm -f *.js lib/* > docs/api.md",
"prepare": "simple-git-hooks",
"test": "stricter-standard && c8 --reporter=lcov --reporter=text-summary mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/rdf-ext/sparql-http-client.git"
},
"keywords": [
"sparql",
"http",
"rdf"
],
"author": "Thomas Bergwinkl <[email protected]> (https://www.bergnet.org/people/bergi/card#me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdf-ext/sparql-http-client/issues"
},
"homepage": "https://rdf-ext.github.io/sparql-http-client/",
"dependencies": {
"@bergos/jsonparse": "^1.4.1",
"@rdfjs/data-model": "^2.0.2",
"@rdfjs/dataset": "^2.0.2",
"@rdfjs/environment": "^1.0.0",
"@rdfjs/parser-n3": "^2.0.2",
"@rdfjs/to-ntriples": "^3.0.1",
"duplex-to": "^2.0.0",
"nodeify-fetch": "^3.1.0",
"rdf-transform-triple-to-quad": "^2.0.0",
"readable-stream": "^4.5.2",
"stream-chunks": "^1.0.0"
},
"devDependencies": {
"c8": "^10.1.2",
"express": "^4.18.2",
"express-as-promise": "^2.0.0",
"is-stream": "^4.0.1",
"jsdoc-to-markdown": "^9.0.0",
"lodash": "^4.17.21",
"mocha": "^11.0.1",
"rdf-ext": "^2.5.1",
"rdf-test": "^0.1.0",
"simple-git-hooks": "^2.9.0",
"stricter-standard": "^0.3.0"
},
"simple-git-hooks": {
"pre-commit": "npm run build:docs && git add docs/api.md"
}
}