forked from dbmdz/mirador-imagecropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.09 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": "mirador-imagecropper",
"version": "0.1.5",
"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",
"react-rnd": "^10.3.5",
"lodash": "^4.17.11"
},
"devDependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"mirador": "^3.3.0",
"nwb": "0.25.x",
"openseadragon": "^2.4.2",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redux-saga": "^1.1.3",
"reselect": "^4.1.6",
"uuid": "^8.3.2"
},
"peerDependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"mirador": ">=3.1.1",
"openseadragon": "^2.4.2",
"prop-types": "^15.7.2",
"react": "16.x",
"react-dom": "16.x",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0"
}
}