-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.94 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.94 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
{
"name": "@projectreshare/directory",
"version": "1.13.8",
"description": "Interact with the library services directory",
"repository": {
"type": "git",
"url": "https://github.com/openlibraryenvironment/ui-directory"
},
"main": "src/index.js",
"repository": "",
"license": "Apache-2.0",
"scripts": {
"start": "stripes serve",
"build": "stripes build --output ./output",
"lint": "eslint ."
},
"devDependencies": {
"@folio/eslint-config-stripes": "~7.1.0",
"@folio/stripes-cli": "~4.0.0",
"eslint": "^7.0.0"
},
"dependencies": {
"@k-int/address-plugin-british-isles": "^1.1.0",
"@k-int/address-plugin-generic": "^1.1.0",
"@k-int/address-plugin-north-america": "^1.1.0",
"@folio/stripes-erm-components": "^6.1.0",
"@k-int/stripes-kint-components": "^2.5.1",
"compose-function": "^3.0.3",
"final-form-arrays": "^3.0.2",
"final-form-set-field-data": "^1.0.2",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react-final-form": "^6.4.0",
"react-final-form-arrays": "^3.1.1",
"uuid": "^7.0.3"
},
"peerDependencies": {
"@folio/stripes": "^9.0.0 || ^10.0.0",
"react": "*",
"react-intl": "^6.0.0 || ^7.0.0",
"react-router-dom": "^5.2.0"
},
"resolutions": {
"@rehooks/local-storage": "2.4.4",
"postcss-nesting" : "^10.0.0"
},
"stripes": {
"actsAs": [
"app",
"settings"
],
"displayName": "ui-directory.meta.title",
"route": "/directory",
"home":"/directory/entries?filters=type.institution&sort=fullyQualifiedName",
"queryResource": "query",
"stripesDeps": [
"@folio/stripes-erm-components",
"@k-int/stripes-kint-components",
"@k-int/address-plugin-generic",
"@k-int/address-plugin-north-america",
"@k-int/address-plugin-british-isles"
],
"icons": [
{
"name": "app",
"alt": "Create, view and manage directory entries",
"title": "Directory"
}
],
"okapiInterfaces": {
"directory": "1.0 2.0",
"tags": "1.0"
},
"permissionSets": [
{
"permissionName": "module.directory.enabled",
"displayName": "UI: Directory module is enabled",
"subPermissions": [
"configuration.entries.collection.get",
"directory.all.read"
],
"visible": true
},
{
"permissionName": "settings.directory.enabled",
"displayName": "Settings (directory): display list of settings pages",
"subPermissions": [
"settings.enabled",
"directory.all.read"
],
"visible": true
},
{
"permissionName": "ui-directory.edit-self",
"displayName": "Directory: edit the directory entry of the present institution",
"subPermissions": [
"module.directory.enabled",
"directory.entry.managed-item.put"
],
"visible": true
},
{
"permissionName": "ui-directory.edit-local",
"displayName": "Directory: edit the local fields of directory entries",
"subPermissions": [
"module.directory.enabled",
"directory.entry.item-local.put"
],
"visible": true
},
{
"permissionName": "ui-directory.edit-all",
"displayName": "Directory: edit all directory entries",
"subPermissions": [
"module.directory.enabled",
"directory.entry.item.put"
],
"visible": true
},
{
"permissionName": "ui-directory.create",
"displayName": "Directory: create new directory entries",
"subPermissions": [
"module.directory.enabled",
"directory.entry.item.post"
],
"visible": true
}
],
"ignoredComment": "The directory.edit-* permissions are enforced on the UI side only, as there are presently no server-side permissions in mod-directory/service/src/main/okapi/ModuleDescriptor-template.json to include"
}
}