forked from SolidLabResearch/user-managed-access
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 4.29 KB
/
package.json
File metadata and controls
154 lines (154 loc) · 4.29 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "@solidlab/user-managed-access",
"version": "0.1.0",
"description": "SolidLab access & usage control artefacts for use in the Solid ecosystem.",
"keywords": [
"css",
"solid",
"community solid server",
"solid community server",
"uma",
"user managed access",
"access control",
"usage 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": "Ruben Dedecker",
"email": "ruben.dedecker@ugent.be",
"url": "https://pod.rubendedecker.be/profile/card#me"
},
{
"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",
"exports": {},
"files": [],
"scripts": {
"postinstall": "yarn run sync:list && yarn build",
"clean": "shx rm -rf ./**/node_modules",
"build": "yarn workspaces foreach --include 'packages/*' -A -pi -j unlimited -t run build",
"test": "vitest run",
"start": "yarn workspaces foreach --include 'packages/*' -A -pi -j unlimited run start",
"start:odrl": "yarn workspace @solidlab/uma run start:odrl & yarn workspace @solidlab/uma-css run start",
"start:demo": "yarn workspaces foreach --include 'packages/*' -A -pi -j unlimited run demo",
"script:demo": "yarn exec tsx ./demo/flow.ts",
"script:demo-test": "yarn exec tsx ./demo/flow-test.ts",
"script:demo-uma-policy": "yarn exec tsx ./scripts/demo-uma-policy.ts",
"script:public": "yarn exec tsx ./scripts/test-public.ts",
"script:private": "yarn exec tsx ./scripts/test-private.ts",
"script:registration": "yarn exec tsx ./scripts/test-registration.ts",
"script:seed": "yarn exec tsx ./scripts/seed-uma-ODRL-policy.ts",
"script:uma-ucp": "yarn exec tsx ./scripts/test-uma-ucp.ts",
"script:uma-odrl": "yarn exec tsx ./scripts/test-uma-ODRL.ts",
"script:uma-odrl-policy": "yarn exec tsx ./scripts/test-uma-ODRL-policy.ts",
"script:flow": "yarn run script:public && yarn run script:private && yarn run script:uma-ucp && yarn run script:registration",
"sync:list": "syncpack list-mismatches",
"sync:fix": "syncpack fix-mismatches"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.19.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"chalk": "^5.4.1",
"componentsjs-generator": "^3.1.2",
"eslint": "^8.10.0",
"jest-rdf": "^1.8.1",
"shx": "^0.3.4",
"syncpack": "^13.0.2",
"tsx": "^4.19.2",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.3"
},
"resolutions": {
"@types/node": "^20.19.1"
},
"workspaces": [
"packages/*"
],
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"max-len": [
2,
{
"code": 120,
"tabWidth": 4,
"ignoreUrls": true
}
],
"new-cap": "off"
},
"ignorePatterns": [
"node_modules",
"dist",
"scripts",
"coverage",
"*.conf.js",
"*.config.js",
"*.conf.ts",
"*.config.ts"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"feat",
"fix",
"docs",
"chore",
"build",
"test"
]
]
}
}
}