-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "videojs-bif",
"version": "1.0.6",
"description": "Video.js plugin for supporting BIF.",
"main": "./dist/videojs.bif.min.js",
"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",
"lint:js": "eslint src/ webpack/",
"start": "webpack-dev-server --config webpack/webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chemoish/videojs-bif.git"
},
"keywords": [
"html5",
"player",
"video",
"videojs",
"videojs-plugin"
],
"author": "Carey Hinoki <[email protected]> (http://www.careyhinoki.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/chemoish/videojs-bif/issues"
},
"homepage": "https://github.com/chemoish/videojs-bif#readme",
"dependencies": {
"jdataview": "^2.5.0",
"lodash": "^4.16.1",
"video.js": "^5.11.6"
},
"devDependencies": {
"babel-loader": "^6.2.5",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"clean-webpack-plugin": "^0.1.10",
"eslint": "^3.5.0",
"eslint-config-airbnb-base": "^7.1.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.15.0",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"load-grunt-tasks": "^3.5.2",
"time-grunt": "^1.4.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
}
}