-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
105 lines (105 loc) · 3.15 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@samvera/ramp",
"version": "3.2.1",
"description": "Ramp (React Avalon Media Player), React component library for rendering a media player for a IIIF 3.0 spec manifest",
"main": "dist/ramp.cjs.js",
"module": "dist/ramp.esm.js",
"browser": "dist/ramp.umd.js",
"files": [
"/dist"
],
"scripts": {
"build": "NODE_ENV=production rollup -c && styleguidist build",
"prepublishOnly": "npm run build",
"dev": "styleguidist server",
"styleguide:build": "styleguidist build",
"test": "jest --coverage --colors",
"test:watch": "jest --watch",
"test:debug": "node --inspect $(npm bin)/jest --runInBand",
"demo": "webpack serve --mode=development",
"demo:build": "webpack --mode=production"
},
"contributors": [
"Dananji Withana <[email protected]>",
"Mason Ballengee <[email protected]>",
"Chris Colvard <[email protected]>",
"Patrick Lienau <[email protected]>",
"Adam Arling <[email protected]>"
],
"keywords": [
"IIIF",
"audio",
"video",
"react",
"styleguidist"
],
"author": "Adam J. Arling",
"license": "ISC",
"homepage": "https://iiif-react-media-player.netlify.app",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^16.0.1",
"@types/jest": "^26.0.12",
"@types/react": "18.3.5",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-alias": "^1.6.0",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^5.0.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^26.4.2",
"path-browserify": "^1.0.1",
"postcss-svg": "^3.0.0",
"prop-types": "^15.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-styleguidist": "13.1.3",
"rollup": "^2.26.9",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "^7.0.1",
"sass": "^1.28.0",
"sass-loader": "^10.0.5",
"sinon": "^18.0.0",
"stream-browserify": "^3.0.0",
"style-loader": "^2.0.0",
"svg-url-loader": "^6.0.0",
"video.js": "^8.10.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@rollup/plugin-json": "^6.0.1",
"@silvermine/videojs-quality-selector": "^1.3.1",
"classnames": "^2.5.1",
"mammoth": "^1.4.19",
"manifesto.js": "^4.1.0",
"mime-db": "^1.52.0",
"react-error-boundary": "^4.0.11",
"sanitize-html": "^2.10.0",
"videojs-markers-plugin": "^1.0.2"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"video.js": "^8.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/samvera-labs/ramp.git"
}
}