-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.76 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.76 KB
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
{
"version": "1.0.10",
"types": "dist/types/index.d.ts",
"main": "dist/cjs/production/index.jsx",
"module": "dist/esm/production/index.jsx",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"license": "MIT",
"keywords": [
"plyr",
"video-player",
"youtube",
"vimeo",
"hls",
"video",
"lion-plyr",
"html5-video",
"solid",
"solid-video"
],
"name": "solid-plyr",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"eslint": "^7.32.0",
"eslint-config-lxsmnsyc": "^0.2.3",
"pridepack": "^0.12.2",
"solid-js": "^1.1.3",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"solid-js": "^1.1.3"
},
"scripts": {
"prepublish": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"test": "pridepack test --passWithNoTests",
"clean": "pridepack clean",
"watch": "pridepack watch"
},
"description": "A simple HTML5, YouTube and Vimeo player (Plyr) for SolidJS",
"repository": {
"url": "https://github.com/git-ced/solid-plyr.git",
"type": "git"
},
"homepage": "https://solid-plyr.netlify.app/",
"bugs": {
"url": "https://github.com/git-ced/solid-plyr/issues"
},
"publishConfig": {
"access": "public"
},
"author": "Prince Neil Cedrick Castro",
"private": false,
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
},
"dependencies": {
"dashjs": "^4.1.0",
"hls.js": "^1.0.10",
"identity-obj-proxy": "^3.0.0",
"plyr": "^3.6.8"
}
}