-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
104 lines (104 loc) · 2.88 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
{
"name": "@mkhuda/react-shaka-player",
"version": "1.2.2",
"description": "React video player built with Shaka-Player",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Muhammad K. Huda",
"license": "MIT",
"scripts": {
"nodeminify": "node ./node_modules/.bin/node-minify",
"build-css": "yarn nodeminify --compressor clean-css --input \"src/styles/ui.css\" --output \"dist/ui.css\"",
"build": "rimraf dist && rollup -c --perf",
"start": "yarn build",
"test": "jest",
"watch": "rollup -c --watch"
},
"dependencies": {
"shaka-player": "^3.3.7"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@node-minify/clean-css": "^6.2.0",
"@node-minify/cli": "^6.2.0",
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-strip": "^2.1.0",
"@rollup/plugin-typescript": "^8.2.5",
"@types/enzyme": "^3.10.9",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^17.0.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"babel-jest": "^27.0.6",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"jest": "^27.0.6",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-bundle-html": "^0.2.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-html2": "^3.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "^16.8.x || ^17.x.x",
"shaka-player": "^3.x.x"
},
"directories": {
"demo": "demo",
"test": "test"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "jsdom",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupFilesAfterEnv": [
"<rootDir>/test/app.test.tsx"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkhuda/react-shaka-player.git"
},
"bugs": {
"url": "https://github.com/mkhuda/react-shaka-player/issues"
},
"homepage": "https://github.com/mkhuda/react-shaka-player#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"react",
"shaka-player",
"video-player",
"mpd",
"hls"
]
}