-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1017 Bytes
/
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
{
"name": "ldes-server-simulator",
"version": "1.0.0",
"description": "Simulator for a very basic LDES server, allowing to upload a set of LDES fragments and serve those on the same path (with different host/port).",
"main": "src/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "npm run build && node ./dist/server.js --port=8080",
"dev": "node-dev src/server.ts",
"test": "jest"
},
"author": "Ranko Orlic",
"license": "EUPL-1.2",
"dependencies": {
"@fastify/accepts": "^4.3.0",
"event-emitter-promisify": "^1.1.0",
"fastify": "^4.15.0",
"jsonld-streaming-parser": "^3.3.0",
"jsonld-streaming-serializer": "^2.1.0",
"minimist": "^1.2.8",
"n3": "^1.17.2"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/minimist": "^1.2.2",
"@types/n3": "^1.16.4",
"@types/node": "^22.0.2",
"jest": "^29.5.0",
"node-dev": "^8.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.7.0",
"typescript": "^5.5.4"
}
}