-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
72 lines (72 loc) · 2.26 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
{
"name": "videojs-chapter-thumbnails",
"version": "3.2.0",
"description": "Video.js plugin for supporting chapter thumbnails",
"main": "./dist/videojs.chapter-thumbnails.min.js",
"style": "./dist/videojs.chapter-thumbnails.min.css",
"scripts": {
"build:development": "webpack --config webpack/webpack.config",
"build:production": "webpack --config webpack/webpack.config.production",
"build": "npm run build:production && npm run build:development",
"lint:js": "eslint karma.conf src/ test/ webpack/",
"start": "webpack-dev-server --config webpack/webpack-dev-server",
"test": "karma start --single-run"
},
"license": "MIT",
"author": "Carey Hinoki <[email protected]>",
"homepage": "https://github.com/chemoish/videojs-chapter-thumbnails",
"repository": {
"type": "git",
"url": "https://github.com/chemoish/videojs-chapter-thumbnails.git"
},
"bugs": {
"url": "https://github.com/chemoish/videojs-chapter-thumbnails/issues"
},
"keywords": [
"html5",
"player",
"video",
"videojs",
"videojs-plugin"
],
"dependencies": {
"video.js": "^5.19.1"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^5.0.3",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^1.16.0",
"expose-loader": "^0.7.3",
"extract-text-webpack-plugin": "^1.0.1",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^1.8.0",
"load-grunt-tasks": "^3.5.2",
"moment": "^2.14.1",
"node-sass": "^3.8.0",
"null-loader": "^0.1.1",
"phantomjs": "^2.1.7",
"postcss-loader": "^0.11.0",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^3.2.3",
"style-loader": "^0.12.4",
"time-grunt": "^1.4.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0"
}
}