This repository was archived by the owner on Mar 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.69 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.69 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
{
"name": "@treecg/basic-ldes-server",
"version": "1.1.10",
"description": "Implement the Source class to generate a 1 dim paginated Linked Data Event Stream from your dataset",
"contributors": [
"Brecht Van de Vyvere <brecht.vandevyvere@ugent.be>",
"Kasper Zutterman <kasperzutterman1999@gmail.com> (https://www.kasperzutterman.com/)",
"Lucas Derveaux <ljdrveau.derveaux@ugent.be>"
],
"license": "MIT",
"repository": "git@github.com:TREEcg/Basic-LDES-Server.git",
"bugs": {
"url": "https://github.com/TREEcg/Basic-LDES-Server/issues"
},
"homepage": "https://github.com/TREEcg/Basic-LDES-Server#readme",
"main": "dist/src/index.js",
"files": [
"bin",
"dist/src"
],
"scripts": {
"dev": "nodemon --config nodemon.json --exec yarn start",
"start": "yarn run build && node ./bin/server.js",
"clean": "rm -rf dist",
"clean-linux": "rm -rf dist",
"clean-windows": "del /F /Q /s dist",
"build": "yarn run clean-linux && tsc",
"publish": "yarn run build && npm publish --access public"
},
"dependencies": {
"@dexagod/rdf-retrieval": "^1.0.2",
"@rdfjs/data-model": "^1.3.2",
"@types/node": "^15.14.1",
"@types/yargs": "^17.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mqtt": "^4.2.8",
"node-fetch": "^2.6.1",
"rdf-parse": "^1.8.1",
"rdf-serialize": "^1.1.0",
"rdf-string": "^1.5.0",
"rxjs": "^7.2.0",
"sequelize": "^6.6.4",
"sqlite3": "^5.0.2",
"streamify-array": "^1.0.1",
"streamify-string": "^1.0.1",
"typescript": "^4.0.5",
"yargs": "^17.0.1"
},
"devDependencies": {
"kill-port": "^1.6.1",
"nodemon": "^2.0.9"
}
}