-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.81 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
{
"name": "mirador-canvasnavigation",
"version": "0.2.4",
"description": "Mirador 3 plugin to replace the builtin canvas navigation with an extended one",
"keywords": [
"iiif",
"mirador",
"mirador3",
"mirador-plugin",
"react-component"
],
"homepage": "",
"repository": "https://github.com/dbmdz/mirador-canvasnavigation",
"license": "MIT",
"author": "Matthias Lindinger <matthias.lindinger@bsb-muenchen.de>",
"contributors": [
"Johannes Baiter <johannes.baiter@bsb-muenchen.de>"
],
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"format": "eslint --fix ./demo/src ./src",
"lint": "eslint ./demo/src ./src",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"mirador": "^3.3.0",
"nwb": "^0.25.2",
"prettier": "^3.3.3",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"peerDependencies": {
"@material-ui/core": "4.x",
"@material-ui/icons": "4.x",
"classnames": "2.x",
"mirador": "3.x",
"prop-types": "15.x",
"react": "16.x",
"react-dom": "16.x",
"react-i18next": "11.x",
"reselect": "4.x"
},
"engines": {
"npm": ">=8.0.0"
}
}