-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.94 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
{
"name": "videojs-concurrency",
"version": "2.0.3",
"description": "Video.js plugin for supporting concurrency",
"main": "src/videojs-concurrency",
"scripts": {
"build": "npm run build:production && npm run build:development",
"build:development": "webpack --config webpack/webpack.config",
"build:production": "webpack --config webpack/webpack.config.production",
"start": "webpack-dev-server --config webpack/webpack-dev-server",
"lint:js": "eslint karma.conf.js src/ test/ webpack/",
"test": "karma start --single-run"
},
"license": "MIT",
"author": "Carey Hinoki <carey.hinoki@gmail.com> (http://www.careyhinoki.me/)",
"homepage": "https://github.com/chemoish/videojs-concurrency",
"repository": {
"type": "git",
"url": "https://github.com/chemoish/videojs-concurrency.git"
},
"bugs": {
"url": "https://github.com/chemoish/videojs-concurrency/issues"
},
"keywords": [
"html5",
"player",
"video",
"videojs",
"videojs-plugin"
],
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"clean-webpack-plugin": "^0.1.9",
"eslint": "^2.11.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.8.1",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"jasmine": "^2.3.2",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-webpack": "^1.7.0",
"load-grunt-tasks": "^3.5.0",
"moment": "^2.13.0",
"phantomjs": "^1.9.18",
"time-grunt": "^1.3.0",
"video.js": "^5.10.4",
"webpack": "^1.13.1",
"webpack-config": "^5.0.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"console-polyfill": "^0.2.2",
"whatwg-fetch": "^0.9.0"
}
}