-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
156 lines (156 loc) · 4.21 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
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
155
156
{
"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": "[email protected]",
"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": "[email protected]",
"url": "https://pod.rubendedecker.be/profile/card#me"
},
{
"name": "Wout Slabbink",
"email": "[email protected]",
"url": "https://pod.woutslabbinck.com/profile/card#me"
},
{
"name": "Wouter Termont",
"email": "[email protected]",
"url": "https://wouter.termont.online/"
}
],
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.18",
"yarn": ">=4.0"
},
"type": "commonjs",
"exports": {},
"files": [],
"scripts": {
"prepare": "yarn build:all",
"clean": "shx rm -rf ./**/node_modules",
"build:all": "yarn workspaces foreach --include 'packages/*' -A -pi -t run build",
"build:demo": "cd demo && yarn build:demo",
"test:all": "yarn workspaces foreach --include 'packages/*' -A -pi run test",
"start:all": "yarn workspaces foreach --include 'packages/*' -A -pi run start",
"start:demo": "concurrently 'yarn start:demo:sites' 'yarn start:demo:servers'",
"start:demo:servers": "yarn workspaces foreach --include 'packages/*' -A -pi run demo",
"start:demo:sites": "cd demo && yarn start:demo",
"script:demo": "yarn exec ts-node ./demo/flow.ts",
"script:public": "yarn exec ts-node ./scripts/test-public.ts",
"script:private": "yarn exec ts-node ./scripts/test-private.ts",
"script:registration": "yarn exec ts-node ./scripts/test-registration.ts",
"script:ucp-enforcement": "yarn exec ts-node ./scripts/test-ucp-enforcement.ts",
"script:uma-ucp": "yarn exec ts-node ./scripts/test-uma-ucp.ts",
"script:flow": "yarn run script:public && yarn run script:private && yarn run script:uma-ucp && yarn run script:registration && yarn run script:ucp-enforcement"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@solidlab/ucp": "workspace:^",
"@types/jest": "^29.5.6",
"@types/node": "^20.9.4",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"componentsjs-generator": "^3.1.2",
"concurrently": "^8.2.2",
"cross-fetch": "^4.0.0",
"eslint": "^8.10.0",
"jest": "^29.7.0",
"koreografeye": "^0.4.8",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"resolutions": {
"@types/node": "^18.18.11"
},
"workspaces": [
"packages/*"
],
"jest": {
"projects": [
"./packages/*/package.json"
]
},
"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"
]
]
}
}
}