-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
85 lines (85 loc) · 2.46 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
{
"name": "videojs-react-enhanced",
"version": "0.3.1",
"description": "React.js wrapper component for Video.js player",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnest:main": "dist/index.es.js",
"files": [
"dist/**/*"
],
"directories": {
"lib": "lib",
"test": "tests"
},
"types": "dist/types/index.d.ts",
"scripts": {
"test": "npx jest --ci --coverage",
"test:watch": "npx jest --watchAll --coverage --verbose",
"build:watch": "npx rollup -c --watch",
"build:prod": "npx rollup -c rollup.config.prod.js",
"prepare:peers": "npx install-peers -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cadenzah/videojs-react-enhanced.git"
},
"keywords": [
"videojs",
"video.js",
"reactjs",
"react",
"typescript",
"videojs-react",
"videojs-react-enhanced",
"videojs-react-wrapper",
"react-video-js-player"
],
"author": "cadenzah <[email protected]> (https://github.com/cadenzah)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cadenzah/videojs-react-enhanced/issues"
},
"homepage": "https://github.com/cadenzah/videojs-react-enhanced#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^12.1.1",
"@types/jest": "^26.0.9",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.45",
"@types/sinon": "^9.0.4",
"identity-obj-proxy": "^3.0.0",
"install-peers-cli": "^2.2.0",
"jest": "^26.2.2",
"node-sass": "^4.14.1",
"react-dom": "^16.13.1",
"rollup": "^2.23.1",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-postcss": "^3.1.5",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"sinon": "^9.0.2",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.13.1",
"video.js": "^7.8.4"
}
}