-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.93 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.93 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@solidlab/uma",
"version": "0.3.0",
"description": "UMA interfaces and server implementation.",
"keywords": [
"uma",
"user managed access",
"access control",
"authorization",
"policies",
"grants"
],
"author": {
"name": "Wouter Termont",
"email": "wouter.termont@ugent.be",
"url": "https://wouter.termont.online/"
},
"license": "MIT",
"repository": "github:SolidLabResearch/user-managed-access",
"homepage": "https://github.com/SolidLabResearch/user-managed-access/README.md",
"bugs": "https://github.com/SolidLabResearch/user-managed-access/issues",
"contributors": [
{
"name": "Wout Slabbink",
"email": "wout.slabbink@ugent.be",
"url": "https://pod.woutslabbinck.com/profile/card#me"
},
{
"name": "Wouter Termont",
"email": "wouter.termont@ugent.be",
"url": "https://wouter.termont.online/"
}
],
"private": true,
"packageManager": "yarn@4.9.2",
"engines": {
"node": ">=20.0",
"yarn": ">=4.0"
},
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js"
},
"files": [
".componentsignore",
"dist",
"config"
],
"scripts": {
"build": "yarn build:ts && yarn build:components",
"build:ts": "yarn run -T tsc",
"build:components": "yarn run -T componentsjs-generator -r sai-uma -s src -c dist/components -i .componentsignore --lenient",
"start": "node bin/main.js",
"start:odrl": "node bin/odrl.js",
"demo": "node bin/demo.js"
},
"dependencies": {
"@comunica/query-sparql": "^4.4.1",
"@httpland/authorization-parser": "^1.1.0",
"@solid/access-token-verifier": "^1.2.0",
"@solid/community-server": "^8.0.0-alpha.1",
"@types/ms": "^2.1.0",
"@types/n3": "^1.16.4",
"asynchronous-handlers": "^1.0.2",
"componentsjs": "^6.3.0",
"get-jwks": "^9.0.1",
"global-logger-factory": "^1.0.0",
"http-message-signatures": "^1.0.4",
"jose": "^5.2.2",
"logform": "^2.6.0",
"ms": "^2.1.3",
"n3": "^1.17.2",
"odrl-evaluator": "^0.6.0",
"policy-conflict-resolver": "^0.0.3",
"rdf-string": "^2.0.1",
"rdf-vocabulary": "^1.0.1",
"uri-template-lite": "^23.4.0",
"winston": "^3.11.0",
"yargs": "^18.0.0"
},
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/@solidlab/uma",
"lsd:components": "dist/components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/@solidlab/uma/^0.0.0/components/context.jsonld": "dist/components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/@solidlab/uma/^0.0.0/components/": "dist/components/",
"https://linkedsoftwaredependencies.org/bundles/npm/@solidlab/uma/^0.0.0/config/": "config/",
"https://linkedsoftwaredependencies.org/bundles/npm/@solidlab/uma/^0.0.0/dist/": "dist/"
}
}