-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 749 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 749 Bytes
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
{
"name": "rsp-js",
"version": "1.2.1",
"description": "",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc && tsc -d --declarationDir dist/ --emitDeclarationOnly",
"start": "node dist/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"release": "npm run build && npm publish --access public"
},
"keywords": ["RSP", "RDF Stream Processing", "Semantic Web", "RDF"],
"author": "Pieter Bonte",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@comunica/query-sparql": "^2.5.2",
"n3": "^1.16.3"
}
}