forked from folio-org/ui-serials-management
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
188 lines (188 loc) · 6.77 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
{
"name": "@folio/serials-management",
"version": "1.1.0",
"description": "FOLIO app for serials-management",
"main": "src/index.js",
"repository": "folio-org/ui-serials-management",
"license": "Apache-2.0",
"scripts": {
"start": "stripes serve",
"build": "stripes build --output ./output",
"lint": "eslint .",
"test": "yarn run test:jest",
"test:jest": "jest --ci --coverage",
"test:unit": "yarn run test:jest && yarn run test:unit:report",
"build-mod-descriptor": "stripes mod descriptor --full --strict | jq '.[]' > module-descriptor.json ",
"test:unit:report": "cp -r ./artifacts/coverage-jest ./artifacts/coverage"
},
"stripes": {
"actsAs": [
"app",
"settings"
],
"displayName": "ui-serials-management.meta.title",
"route": "/serials-management",
"home": "/serials-management/serials",
"hasSettings": true,
"queryResource": "query",
"okapiInterfaces": {
"serials-management": "1.0"
},
"optionalOkapiInterfaces": {
"orders": "12.1",
"order-lines": "3.0",
"organizations": "2.0",
"material-types": "2.2",
"pieces": "3.0",
"acquisitions-units": "1.1",
"holdings-storage": "6.0 7.0",
"locations": "3.0",
"titles": "1.2",
"identifier-types": "1.2"
},
"stripesDeps": [
"@folio/stripes-erm-components",
"@k-int/stripes-kint-components"
],
"icons": [
{
"name": "app",
"alt": "FOLIO app for Serials Management",
"title": "serials"
}
],
"permissionSets": [
{
"permissionName": "module.serials-management.enabled",
"displayName": "UI: ui-serials-management module is enabled",
"subPermissions": [
"serials-management.refdata.read",
"serials-management.locales.collection.get"
]
},
{
"permissionName": "settings.serials-management.enabled",
"displayName": "Settings (serials-management): display list of settings pages",
"subPermissions": [
"settings.enabled"
]
},
{
"permissionName": "ui-serials-management.serials.view",
"displayName": "Serials: Search & view serials",
"description": "A user with this permission can search and view existing serials. This includes the permission to see and access the Serials app in the Folio interface and permission to view publication patterns.",
"visible": true,
"subPermissions": [
"module.serials-management.enabled",
"serials-management.serials.view",
"serials-management.rulesets.view"
]
},
{
"permissionName": "ui-serials-management.serials.edit",
"displayName": "Serials: Edit serials",
"description": "Grants all permissions included in Serials: Search & view serials plus the ability to edit serials. It does not include the ability to create Publication patterns.",
"visible": true,
"subPermissions": [
"ui-serials-management.serials.view",
"serials-management.serials.edit"
]
},
{
"permissionName": "ui-serials-management.rulesets.edit",
"displayName": "Serials: Edit publication patterns",
"description": "Grants all permissions included in Serials: Edit serials plus the ability to create publication patterns.",
"visible": true,
"subPermissions": [
"ui-serials-management.serials.edit",
"serials-management.rulesets.edit"
]
},
{
"permissionName": "ui-serials-management.predictedpieces.view",
"displayName": "Serials: Search & view predicted pieces",
"description": "Grants all permissions included in Serials: Search & view serials plus the ability to search and view predicted pieces.",
"visible": true,
"subPermissions": [
"ui-serials-management.serials.view",
"serials-management.predictedPieceSets.view"
]
},
{
"permissionName": "ui-serials-management.predictedpieces.edit",
"displayName": "Serials: Create predicted pieces",
"description": "Grants all permissions included in Serials: Search & view predicted pieces plus the ability to creatre predicted pieces based on publication patterns.",
"visible": true,
"subPermissions": [
"ui-serials-management.predictedpieces.view",
"serials-management.predictedPieceSets.edit"
]
},
{
"permissionName": "ui-serials-management.picklists.view",
"displayName": "Settings (Serials): View pick lists and values",
"description": "A user with this permission can access the settings for the Serials app and view pick lists and pick list values.",
"visible": true,
"subPermissions": [
"settings.serials-management.enabled",
"serials-management.refdata.read"
]
},
{
"permissionName": "ui-serials-management.picklists.manage",
"displayName": "Settings (Serials): Manage pick lists and values",
"description": "Grants all permissions included in 'Settings (Serials): View pick lists and values' plus the ability to manage pick lists and pick list values.",
"visible": true,
"subPermissions": [
"ui-serials-management.picklists.view",
"serials-management.refdata.manage",
"settings.configuration.manage"
]
}
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.0",
"@folio/eslint-config-stripes": "^7.1.0",
"@folio/jest-config-stripes": "^2.0.0",
"@testing-library/react": "^11.0.2",
"@testing-library/react-hooks": "^5.0.3",
"@folio/service-interaction": "^3.0.0",
"@folio/stripes": "^9.1.0",
"@folio/stripes-cli": "^3.1.0",
"@folio/stripes-erm-components": "^9.1.0",
"@folio/stripes-erm-testing": "^2.1.0",
"@formatjs/cli": "^6.1.3",
"core-js": "^3.6.1",
"eslint": "^7.32.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.7",
"react-query": "^3.9.0",
"react-router-dom": "^5.2.0",
"regenerator-runtime": "^0.13.3"
},
"dependencies": {
"@k-int/stripes-kint-components": "^5.8.0",
"final-form": "^4.18.4",
"final-form-arrays": "^3.0.1",
"final-form-set-field-data": "^1.0.2",
"lodash": "^4.17.11",
"prop-types": "^15.6.0",
"react-final-form": "^6.3.0",
"react-final-form-arrays": "^3.1.1"
},
"peerDependencies": {
"@folio/service-interaction": "^3.0.0",
"@folio/stripes": "^9.1.0",
"@folio/stripes-erm-components": "^9.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.7",
"react-query": "^3.9.0",
"react-router-dom": "^5.2.0"
},
"optionalDependencies": {
"@folio/plugin-find-po-line": "^5.1.0"
}
}