forked from NathanaelA/nativescript-exoplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.29 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.29 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "nativescript-exoplayer",
"version": "4.0.1",
"main": "videoplayer",
"typings": "videoplayer.d.ts",
"description": "A NativeScript plugin that uses the ExoPlayer video player on Android to play local and remote videos.",
"nativescript": {
"platforms": {
"android": "3.0.0",
"ios": "3.0.0"
},
"plugin": {
"nan": "true",
"pan": "true",
"core3": "true",
"category": "Interface"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathanaela/nativescript-exoplayer.git"
},
"keywords": [
"NativeScript",
"Android",
"iOS",
"TypeScript",
"video",
"video player",
"movie",
"exoplayer",
"subtitles"
],
"contributors": [
{
"name": "Nathanael Anderson",
"email": "nathan@master-technology",
"url": "https://github.com/nathanaela"
},
{
"name": "Brad Martin",
"email": "bradmartin0905@gmail.com",
"url": "https://github.com/bradmartin"
},
{
"name": "Alexander Ziskind",
"email": "alex@nuvious.com",
"url": "https://github.com/alexziskind1"
},
{
"name": "Blake Nussey",
"email": "blake@stageme.com",
"url": "https://github.com/bnussey"
},
{
"name": "Juan Manuel Campos Olvera",
"email": "juan4106@hotmail.com",
"url": "https://github.com/juanmcampos"
},
{
"name": "Ivo Georgiev",
"email": "ivo@strem.io",
"url": "https://github.com/Ivshti"
},
{
"name": "Alexander Semenov",
"email": "asemenovboyarka@gmail.com",
"url": "https://github.com/SemenovAlexander"
},
{
"name": "Nathan Walker",
"email": "walkerrunpdx@gmail.com",
"url": "https://github.com/NathanWalker"
}
],
"author": {
"name": "Nathanael Anderson",
"email": "nathan@master-technology",
"url": "https://github.com/nathanaela"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nathanaela/nativescript-exoplayer/issues"
},
"homepage": "https://github.com/nathanaela/nativescript-exoplayer",
"readmeFilename": "README.md",
"scripts": {
"tsc": "tsc",
"prepack": "tsc",
"setup": "cd ../demo && npm i"
},
"devDependencies": {
"typescript": "file:../demo/node_modules/typescript"
}
}