-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.85 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
{
"name": "mirador-imagecropper",
"version": "0.1.9",
"description": "Mirador 3 plugin to retrieve the image url for the selected area",
"keywords": [
"iiif",
"mirador",
"mirador3",
"mirador-plugin",
"react-component"
],
"homepage": "",
"repository": "https://github.com/dbmdz/mirador-imagecropper",
"license": "MIT",
"author": "Matthias Lindinger <[email protected]>",
"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"
},
"dependencies": {
"material-ui-image": "^3.3.2"
},
"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",
"@material-ui/lab": "^4.0.0-alpha.61",
"lodash": "4.x",
"mirador": "3.x",
"openseadragon": "2.x",
"prop-types": "15.x",
"react": "16.x",
"react-dom": "16.x",
"react-rnd": "10.x",
"redux-saga": "1.x",
"reselect": "4.x"
},
"engines": {
"npm": ">=8.0.0"
}
}