forked from dbmdz/mirador-textoverlay
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.53 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "mirador-textoverlay",
"version": "0.3.8",
"description": "Mirador 3 plugin to render a hidden (but selectable) or visible text overlay",
"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",
"lint": "eslint ./src ./__tests__",
"format": "eslint --fix ./src ./__tests__",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"test": "npm run lint && jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"peerDependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.53",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.11",
"manifesto.js": "^4.2.0",
"mirador": "^3.0.0",
"prop-types": "^15.6.2",
"react": "16.x",
"react-dom": "16.x",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@jest/globals": "^26.2.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.53",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^12.1.5",
"@types/jest": "^27.5.0",
"babel-eslint": "^10.1.0",
"canvas": "^2.6.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^26.2.2",
"mirador": "^3.0.0-rc.7",
"nwb": "0.25.x",
"prettier": "^2.2.1",
"prop-types": "^15.6.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"redux-saga-test-plan": "^4.0.0-rc.3",
"uuid": "^8.3.0"
},
"author": "Johannes Baiter <[email protected]>",
"homepage": "https://mirador-textoverlay.netlify.app",
"license": "MIT",
"repository": "https://github.com/dbmdz/mirador-textoverlay",
"keywords": [
"react-component",
"mirador-plugin",
"mirador",
"mirador3",
"ocr",
"transcription",
"iiif"
],
"engines": {
"node": ">=16.0.0 <17.0.0",
"npm": ">=8.0.0 <9.0.0"
}
}