-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.87 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
{
"name": "@folio/wayfinder",
"version": "1.0.0",
"description": "Wayfinder",
"main": "src/index.js",
"repository": "",
"license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"start": "stripes serve",
"build": "stripes build --output ./output",
"test-int": "stripes test nightmare --run demo --show",
"test": "stripes test karma",
"lint": "eslint ."
},
"devDependencies": {
"@bigtest/interactor": "^0.8.1",
"@bigtest/mirage": "^0.0.1",
"@bigtest/mocha": "^0.5.1",
"@bigtest/react": "^0.1.2",
"@folio/eslint-config-stripes": "^3.2.1",
"@folio/stripes": "^1.0.0",
"@folio/stripes-cli": "^1.5.0",
"@folio/stripes-core": "^2.15.1",
"babel-eslint": "^9.0.0",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^5.6.0",
"mocha": "^5.2.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"sinon": "^6.3.4"
},
"dependencies": {
"prop-types": "^15.6.0",
"react-intl": "^2.4.0",
"react-router-dom": "^4.1.1"
},
"peerDependencies": {
"@folio/stripes": "^1.0.0",
"react": "*"
},
"stripes": {
"type": "app",
"displayName": "ui-wayfinder.meta.title",
"route": "/wayfinder",
"hasSettings": true,
"icons": [
{
"name": "app",
"alt": "Data import loader for MARC records",
"title": "Data import"
}
],
"okapiInterfaces": {},
"permissionSets": [
{
"permissionName": "module.wayfinder.enabled",
"displayName": "UI: wayfinder module is enabled",
"visible": true
},
{
"permissionName": "settings.wayfinder.enabled",
"displayName": "Settings (wayfinder): display list of settings pages",
"subPermissions": [
"settings.enabled"
],
"visible": true
}
]
}
}