This repository has been archived by the owner on Apr 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
132 lines (132 loc) · 4.28 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "videojs-chromecast",
"version": "2.0.8",
"description": "Chromecast plugin for videojs",
"main": "es5/js/plugin.js",
"scripts": {
"prebuild": "npm run clean",
"build": "npm-run-all -p build:*",
"build:js": "npm-run-all mkdirs build:js:babel build:js:browserify build:js:bannerize build:js:uglify copy",
"build:js:babel": "babel src -d es5",
"build:js:bannerize": "bannerize dist/videojs-chromecast.js --banner=scripts/banner.ejs",
"build:js:browserify": "browserify . -s video.js-chromecast -o dist/videojs-chromecast.js",
"build:js:uglify": "uglifyjs dist/videojs-chromecast.js --comments --mangle --compress -o dist/videojs-chromecast.min.js",
"build:css": "node-sass --include-path src --output-style compressed src/css/videojs-chromecast.scss -o dist",
"build:test": "npm-run-all mkdirs build:test:browserify",
"build:test:browserify": "browserify `find test -name '*.test.js'` -t babelify -o dist-test/videojs-chromecast.js",
"copy:font": "cp -R src/fonts dist/fonts",
"copy": "npm-run-all -p copy:*",
"clean": "rm -rf dist dist-test es5",
"docs": "doctoc README.md docs/api.md",
"lint": "vjsstandard",
"mkdirs": "mkdir -p dist dist-test es5",
"prepublish": "npm run build",
"prestart": "npm-run-all -p docs build",
"dev": "echo 'requiring node v4.5.0' && . ~/.nvm/nvm.sh && nvm use 4.5.0 && npm-run-all -p start watch",
"start": "npm-run-all -p start:serve",
"start:serve": "babel-node --optional es7.functionBind,es7.classProperties,es7.decorators scripts/server.js",
"pretest": "npm-run-all build:test",
"test": "karma start test/karma/detected.js",
"test:chrome": "npm run pretest && karma start test/karma/chrome.js",
"test:firefox": "npm run pretest && karma start test/karma/firefox.js",
"test:ie": "npm run pretest && karma start test/karma/ie.js",
"test:safari": "npm run pretest && karma start test/karma/safari.js",
"preversion": "./scripts/npm-preversion-for-bower.sh",
"version": "./scripts/npm-version-for-bower.sh",
"postversion": "./scripts/npm-postversion-for-bower.sh",
"watch": "npm run mkdirs && npm-run-all -p watch:*",
"watch:js": "watchify src/js/plugin.js -t babelify -v -o dist/videojs-chromecast.js",
"watch:css": "nodemon -e scss -x \"npm run build:css\"",
"watch:test": "watchify `find test -name '*.test.js'` -t babelify -o dist-test/videojs-chromecast.js"
},
"keywords": [
"chromecast",
"videojs",
"videojs-plugin"
],
"author": "Benjipott, Inc.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/benjipott/video.js-chromecast"
},
"files": [
"CONTRIBUTING.md",
"bower.json",
"dist-test/",
"dist/",
"docs/",
"es5/",
"index.html",
"scripts/",
"src/js/",
"src/css/",
"src/fonts/",
"test/"
],
"babel": {
"optional": [
"es7.functionBind",
"es7.classProperties",
"es7.decorators"
]
},
"devDependencies": {
"babel": "^5.8.0",
"babelify": "^6.0.0",
"bannerize": "^1.0.0",
"browserify": "^11.0.0",
"browserify-shim": "^3.0.0",
"connect": "^3.4.0",
"cowsay": "^1.1.0",
"doctoc": "^0.15.0",
"global": "^4.3.0",
"karma": "^0.13.0",
"karma-browserify": "^4.4.0",
"karma-chrome-launcher": "^0.2.0",
"karma-detect-browsers": "^2.0.0",
"karma-firefox-launcher": "^0.1.0",
"karma-ie-launcher": "^0.2.0",
"karma-qunit": "^0.1.0",
"karma-safari-launcher": "^0.1.0",
"lodash-compat": "^3.10.0",
"minimist": "^1.2.0",
"node-sass": "^3.4.2",
"node.extend": "^1.1.5",
"nodemon": "^1.9.1",
"npm-run-all": "~1.2.0",
"portscanner": "^1.0.0",
"qunitjs": "^1.0.0",
"serve-static": "^1.10.0",
"sinon": "1.14.1",
"uglify-js": "^2.5.0",
"videojs-standard": "^4.0.0",
"watchify": "^3.6.0",
"xhr": "^2.2.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"qunit": "global:QUnit",
"sinon": "global:sinon",
"video.js": "global:videojs"
},
"vjsstandard": {
"ignore": [
"dist",
"dist-test",
"docs",
"es5",
"test/karma",
"scripts"
]
},
"dependencies": {
"global": "^4.3.0",
"object.assign": "^4.0.3",
"video.js": "^5.0.0"
}
}