Compare changes
Some changes are not shown.
For a faster browsing experience, only 15 of 16 files are shown. Download one of the files below to see all changes.
+5
−3
+0
−1
.gitlab-ci.yml
0 → 100644
+14
−0
+70
−12
+10
−4
package-lock.json
0 → 100644
+41432
−0
File added.
Preview size limit exceeded, changes collapsed.
+21
−18
Original line number | Diff line number | Diff line |
---|---|---|
{
|
||
"name": "mirador-annotations",
|
||
"version": "0.4.0",
|
||
"version": "0.5.0",
|
||
"description": "mirador-annotations React component",
|
||
"main": "lib/index.js",
|
||
"module": "es/index.js",
|
||
@@ -11,14 +11,15 @@ | ||
"umd"
|
||
],
|
||
"scripts": {
|
||
"build": "nwb build-react-component --no-demo",
|
||
"build": "nwb build-react-component",
|
||
"clean": "nwb clean-module",
|
||
"lint": "eslint ./src ./__tests__",
|
||
"prepublishOnly": "npm run build",
|
||
"start": "nwb serve-react-demo",
|
||
"test": "npm run lint && jest",
|
||
"test:coverage": "jest --coverage",
|
||
"test:watch": "jest --watch"
|
||
"test:watch": "jest --watch",
|
||
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --watchAll=false"
|
||
},
|
||
"dependencies": {
|
||
"@psychobolt/react-paperjs": "< 1.0",
|
||
@@ -28,46 +29,48 @@ | ||
"draft-js-import-html": "^1.4.1",
|
||
"material-ui-color-components": "^0.3.0",
|
||
"paper": "^0.12.11",
|
||
"react-color": "^2.18.1"
|
||
"react-color": "^2.18.1",
|
||
"react-resize-observer": "^1.1.1"
|
||
},
|
||
"peerDependencies": {
|
||
"@material-ui/core": "^4.9.13",
|
||
"@material-ui/icons": "^4.9.1",
|
||
"@material-ui/lab": "^4.0.0-alpha.52",
|
||
"lodash": "^4.17.11",
|
||
"mirador": "^3.0.0-rc.5",
|
||
"mirador": "git+https://gitlab.tetras-libre.fr/iiif/mirador-video-annotation#annotation-on-video",
|
||
"prop-types": "^15.7.2",
|
||
"react": "^16.0",
|
||
"react-dom": "^16.0",
|
||
"react": "^16.8",
|
||
"react-dom": "^16.8",
|
||
"uuid": "^8.0.0"
|
||
},
|
||
"devDependencies": {
|
||
"@babel/core": "^7.10.4",
|
||
"@babel/eslint-parser": "^7.19.1",
|
||
"@babel/preset-env": "^7.10.4",
|
||
"@babel/preset-react": "^7.10.4",
|
||
"@material-ui/core": "^4.11.0",
|
||
"@material-ui/icons": "^4.9.1",
|
||
"@material-ui/lab": "^4.0.0-alpha.56",
|
||
"babel-eslint": "^10.1.0",
|
||
"canvas": "^2.6.1",
|
||
"enzyme": "^3.11.0",
|
||
"enzyme-adapter-react-16": "^1.15.2",
|
||
"eslint": "^6.8.0",
|
||
"eslint-config-airbnb": "^18.2.0",
|
||
"eslint-config-react-app": "^5.2.1",
|
||
"eslint-plugin-flowtype": "^4.7.0",
|
||
"eslint-plugin-import": "^2.22.0",
|
||
"eslint-plugin-jest": "^23.18.0",
|
||
"eslint-plugin-jsx-a11y": "^6.3.1",
|
||
"eslint": "^8.11.0",
|
||
"eslint-config-airbnb": "^19.0.4",
|
||
"eslint-config-react-app": "^7.0.0",
|
||
"eslint-plugin-flowtype": "^8.0.3",
|
||
"eslint-plugin-import": "^2.25.4",
|
||
"eslint-plugin-jest": "^26.1.1",
|
||
"eslint-plugin-jsx-a11y": "^6.4.1",
|
||
"eslint-plugin-react": "^7.20.3",
|
||
"jest": "^26.1.0",
|
||
"jest-canvas-mock": "^2.2.0",
|
||
"jest-junit": "^15.0.0",
|
||
"jest-localstorage-mock": "^2.4.2",
|
||
"mirador": "^3.0.0-rc.5",
|
||
"mirador": "git+https://gitlab.tetras-libre.fr/iiif/mirador-video-annotation#annotation-on-video",
|
||
"nwb": "^0.24.7",
|
||
"prop-types": "^15.7.2",
|
||
"react": "^16.14.0",
|
||
"react-dom": "^16.14.0",
|
||
"react": "^16.8",
|
||
"react-dom": "^16.8",
|
||
"uuid": "^8.2.0"
|
||
},
|
||
"author": "",
|
||
+210
−62
+96
−45
src/HMSInput.js
0 → 100644
+115
−0
src/ImageFormField.js
0 → 100644
+62
−0
+14
−1
+34
−27
+14
−0