forked from videojs/mux.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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
{
"name": "mux.js",
"version": "2.1.1",
"description": "A collection of lightweight utilities for inspecting and manipulating video container formats.",
"repository": {
"type": "git",
"url": "https://github.com/videojs/mux.js.git"
},
"main": "./lib/index.js",
"scripts": {
"test": "npm run lint && karma start test/karma/karma.conf.js",
"start": "npm-run-all -p watch serve",
"serve": "node scripts/server.js",
"watch": "npm run mkdirs && npm-run-all -p watch:*",
"watch:js": "watchify -s muxjs lib/index.js -v -o dist/mux.js",
"watch:test": "watchify test/*.test.js -v -o dist-test/mux.js",
"mkdirs": "mkdir -p dist dist-test",
"build": "npm run mkdirs && npm-run-all -p build:*",
"build:js": "browserify -s muxjs lib/index.js -o dist/mux.js",
"build:test": "browserify test/*.test.js -o dist-test/mux.js",
"lint": "npm-run-all -p lint:*",
"lint:js": "jshint lib/**/*.js",
"lint:test": "jshint test/*.test.js",
"clean": "rm -rf dist dist-test"
},
"browser": "./lib/index.js",
"keywords": [
"video",
"container",
"transmux",
"mux",
"player",
"hls",
"mp4",
"flv",
"aac",
"h264"
],
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"qunit": "global:QUnit"
},
"author": "Brightcove",
"license": "Apache-2.0",
"devDependencies": {
"browserify": "^12.0.1",
"express": "^4.13.3",
"jshint": "^2.9.1-rc2",
"karma": "^0.13.9",
"karma-browserify": "^4.4.2",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-qunit": "^0.1.5",
"npm-run-all": "^1.4.0",
"portscanner": "^1.0.0",
"qunitjs": "^1.0.0",
"serve-static": "^1.10.0",
"watchify": "^3.6.1",
"webworkify": "^1.0.2"
},
"dependencies": {
"browserify-shim": "^3.8.12"
}
}