-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.68 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
55
56
57
{
"name": "hive-scout-bee",
"version": "1.2.1",
"description": "A library to choose the approach adaptively based on the signature of the stream",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENCE.md"
],
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build && npm test",
"release": "npm publish --access public",
"lint:ts:fix": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0 --fix"
},
"keywords": [
"rdf",
"stream",
"signature",
"n3",
"semantic-web",
"linked-data"
],
"author": "Kushagra Singh Bisen",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/SolidLabResearch/hive-scout-bee.git"
},
"bugs": {
"url": "https://github.com/SolidLabResearch/hive-scout-bee/issues"
},
"homepage": "https://github.com/SolidLabResearch/hive-scout-bee#readme",
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/jest": "^29.2.4",
"@types/n3": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"jest": "^29.3.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"eslint": "^9.34.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jsdoc": "^54.3.1",
"fft-js": "^0.0.12",
"n3": "^1.26.0"
}
}