forked from hola/jwplayer-hlsjs
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "@hola.org/jwplayer-hlsjs",
"description": "hls.js provider for jwplayer",
"version": "0.0.79",
"license": "ISC",
"homepage": "https://github.com/hola/jwplayer-hlsjs",
"scripts": {
"build": "grunt",
"login": "c=`npm c ls`; test \"${c#*@hola}\" != \"$c\" || npm login --scope @hola.org",
"release": "run-s build login release:*",
"release:tag": "git tag v$npm_package_version",
"release:publish": "npm publish",
"release:pushtags": "git push --tags origin",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/hola/jwplayer-hlsjs.git"
},
"main": "./src/jwplayer.hlsjs.js",
"files": [
"Gruntfile.js",
"dist/",
"src/",
".jshintrc"
],
"browserify": {
"transform": [
"browserify-versionify"
]
},
"dependencies": {
"eventemitter3": "^4.0.0"
},
"devDependencies": {
"browserify-derequire": "^1.0.1",
"browserify-versionify": "^1.0.6",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-exorcise": "^2.1.1",
"load-grunt-tasks": "^5.1.0",
"npm-run-all": "^4.0.1"
}
}