-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 1.32 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
{
"name": "videojs-fairplay",
"version": "0.2.0",
"description": "Video.js tech for supporting Fairplay streaming.",
"main": "src/videojs-fairplay",
"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/ webpack/"
},
"keywords": [
"html5",
"player",
"video",
"videojs",
"videojs-plugin"
],
"author": "Carey Hinoki <[email protected]> (http://www.careyhinoki.me/)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"clean-webpack-plugin": "^0.1.10",
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.12.0",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"load-grunt-tasks": "^3.5.0",
"moment": "^2.14.1",
"time-grunt": "^1.4.0",
"video.js": "^5.10.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}