forked from folio-org/ui-inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.52 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.52 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
{
"name": "@folio/inventory",
"version": "1.0.0",
"description": "Inventory manager",
"repository": "folio-org/ui-inventory",
"publishConfig": {
"registry": "https://repository.folio.org/repository/npm-folio/"
},
"license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
"main": "index.js",
"stripes": {
"type": "app",
"displayName": "Inventory",
"route": "/inventory",
"home": "/inventory?filters=&sort=Title",
"hasSettings": false,
"queryResource": "query",
"icons": [
{
"name": "app",
"alt": "View and manage instance records, holdings records and item records",
"title": "Inventory"
}
],
"okapiInterfaces": {
"inventory": "5.0",
"instance-storage": "4.1",
"holdings-storage": "1.0",
"item-storage": "5.0",
"loan-types": "2.0",
"material-types": "2.0",
"shelf-locations": "1.0",
"identifier-types": "1.0",
"contributor-types": "1.0",
"contributor-name-types": "1.0",
"instance-formats": "1.0",
"instance-types": "1.0",
"classification-types": "1.0",
"platforms": "1.0"
},
"permissionSets": [
{
"permissionName": "module.inventory.enabled",
"displayName": "UI: Inventory module is enabled"
}
],
"translations": {
"en": {
"search": "Search",
"resultCount": "{count, number} {count, plural, one {Record found} other {Records found}}"
},
"de": {
"search": "Suche",
"resultCount": "Gefunden {count, number} {count, plural, one {Aufzeichnung} other {Aufzeichnungen}}"
}
}
},
"scripts": {
"lint": "eslint *.js lib settings edit data test/ui-testing",
"test": "echo 'placeholder. no tests implemented'"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.16.0",
"babel-register": "^6.18.0",
"eslint": "^4.8.0",
"@folio/eslint-config-stripes": "^1.1.0",
"webpack": "1.11.0"
},
"dependencies": {
"@folio/stripes-components": "^2.0.0",
"@folio/stripes-form": "^0.8.1",
"@folio/stripes-smart-components": "^1.4.0",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"query-string": "^5.0.0",
"react-intl": "^2.3.0",
"react-router-dom": "^4.0.0",
"redux-form": "^7.0.3"
},
"peerDependencies": {
"@folio/stripes-connect": "^3.1.0",
"@folio/stripes-core": "^2.7.0",
"react": "*"
}
}