-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "@zazuko/trifid-plugin-sparql-proxy",
"version": "2.6.1",
"description": "Trifid plugin for sparql-proxy",
"type": "module",
"main": "index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/zazuko/trifid",
"scripts": {
"test": "c8 --all --reporter lcovonly --reporter text node --test **/*.test.js",
"clean": "rimraf dist/",
"prebuild": "npm run clean",
"build": "tsc",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/zazuko/trifid.git",
"directory": "packages/sparql-proxy"
},
"bugs": {
"url": "https://github.com/zazuko/trifid/issues"
},
"license": "Apache-2.0",
"files": [
"dist",
"lib",
"index.js"
],
"author": {
"name": "Zazuko GmbH",
"url": "https://zazuko.com/"
},
"keywords": [
"trifid",
"trifid-plugin",
"sparql-proxy"
],
"dependencies": {
"@vocabulary/sd": "^1.0.4",
"@zazuko/env-node": "^2.1.4",
"trifid-core": "^5.1.0"
},
"devDependencies": {
"@types/node": "^22.10.7",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}