-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.25 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
{
"name": "@mff-uk/sparqless",
"version": "0.0.1",
"description": "Seamlessly create a GraphQL endpoint facade for a SPARQL endpoint, no RDF knowledge required.",
"main": "src/main.js",
"files": [
"out/**/*"
],
"scripts": {
"start": "ts-node src/main.ts",
"build": "tsc",
"lint": "eslint \"src/**\"",
"format": "eslint --fix \"src/**\"",
"test": "jest",
"prepublishOnly": "npm test && npm run build",
"preversion": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mff-uk/sparqless.git"
},
"keywords": [
"graphql",
"sparql",
"rdf",
"linked-data",
"open-data",
"linked-open-data",
"sparqless"
],
"author": "Daniel Crha (github.com/yawnston)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mff-uk/sparqless/issues"
},
"homepage": "https://mff-uk.github.io/sparqless/",
"devDependencies": {
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@rdfjs/types": "^1.1.0",
"@types/arrayify-stream": "^1.0.1",
"@types/glob": "^7.2.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.181",
"@types/n3": "^1.10.4",
"@types/node": "^17.0.32",
"@types/nunjucks": "^3.2.1",
"@types/sparql-http-client": "^2.2.7",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-jest": "^27.3.1",
"eslint": "^8.2.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"get-graphql-schema": "^2.1.2",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@graphql-tools/utils": "^8.6.5",
"@rdfjs/data-model": "^2.0.1",
"apollo-server": "^3.6.7",
"apollo-server-core": "^3.8.1",
"arrayify-stream": "^2.0.0",
"fetch-sparql-endpoint": "^2.4.0",
"glob": "^7.2.0",
"graphql": "^15.4.0",
"graphql-parse-resolve-info": "^4.12.0",
"lodash": "^4.17.21",
"n3": "^1.16.2",
"nexus": "^1.3.0",
"nunjucks": "^3.2.3",
"rdf-data-factory": "^1.1.0",
"sparql-http-client": "^2.4.0",
"winston": "^3.7.2"
}
}