This repository has been archived by the owner on Feb 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.72 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
{
"name": "react-iiif-media-player",
"version": "2.1.0",
"description": "react-iiif-media-player React component for rendering a media player for a IIIF 3.0 spec manifest",
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage --colors --runInBand --reporters=default --reporters=jest-junit",
"test:watch": "jest --watch",
"start": "webpack-dev-server --mode development",
"transpile": "rimraf dist & babel src --out-dir dist --ignore 'src/**/*.test.js','src/**/*.spec.js','src/**/__mocks__','src/services/testing-helpers.js'",
"build": "rimraf build & webpack --mode=production",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build"
},
"contributors": [
"Adam Arling <[email protected]>"
],
"keywords": [
"IIIF",
"media",
"player",
"react-component"
],
"author": "Adam J. Arling",
"license": "ISC",
"homepage": "https://avalonmediasystem.github.io/react-iiif-media-player/",
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.2",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.4.1",
"jest": "^26.4.2",
"jest-junit": "^11.1.0",
"jest-transform-stub": "^2.0.0",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"axios": "^0.20.0",
"hls.js": "0.14.11",
"iiif-explorer": "^1.0.8",
"istanbul-reports": "3.0.2",
"manifesto.js": "^4.1.0",
"mediaelement": "^4.2.16",
"mkdirp": "^1.0.4",
"prop-types": "^15.6.2",
"react-bootstrap": "^1.3.0",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"svg-url-loader": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avalonmediasystem/react-iiif-media-player.git"
}
}