forked from Callidon/sparql-engine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.93 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
{
"name": "sparql-engine",
"version": "0.7.6",
"description": "A framework for building SPARQL query engines in Javascript",
"main": "dist/api.js",
"types": "dist/api.d.ts",
"scripts": {
"lint": "tslint -c ./tslint.json --fix src/*.ts src/**/*.ts",
"build": "tsc",
"pretest": "npm run build",
"test": "mocha tests/**/*-test.js",
"doc": "typedoc --mode file --out docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Callidon/sparql-engine.git"
},
"keywords": [
"sparql",
"sparql engine",
"sparql query",
"query",
"framework",
"sparql 1.1"
],
"author": "Thomas Minier <thomas.minier@univ-nantes.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Callidon/sparql-engine/issues"
},
"contributors": [
"Arnaud Grall (https://github.com/folkvir)",
"Corentin Marionneau (https://github.com/Slaanaroth)",
"Merlin Barzilai (https://github.com/Rintarou)",
"Dustin Whitney (https://github.com/dwhitney)",
"Julien Aimonier-Davat (https://github.com/Lastshot97)"
],
"homepage": "https://github.com/Callidon/sparql-engine#readme",
"devDependencies": {
"@types/lodash": "^4.14.116",
"@types/lru-cache": "^5.1.0",
"@types/node": "^10.14.17",
"@types/uuid": "^3.4.4",
"@types/xml": "^1.0.2",
"chai": "^4.1.2",
"chai-xml": "^0.3.2",
"codecov": "^3.0.4",
"mocha": "^5.2.0",
"standard": "^11.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.15.0",
"typescript": "^3.6.2"
},
"dependencies": {
"@rdfjs/data-model": "^1.1.2",
"binary-search-tree": "^0.2.6",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"moment": "^2.22.2",
"n3": "^0.11.3",
"rdf-string": "^1.3.1",
"rxjs": "^6.3.3",
"sparqljs": "^2.0.3",
"uuid": "^3.3.2",
"xml": "^1.0.1"
},
"standard": {
"env": [
"node",
"mocha",
"chai"
]
}
}