-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
42 lines (42 loc) · 1.22 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-hlsjs-plugin",
"version": "1.0.16",
"main": "./lib/main.js",
"types": "types.d.ts",
"homepage": "www.streamroot.io",
"author": {
"name": "Streamroot",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:streamroot/videojs-hlsjs-plugin"
},
"scripts": {
"build": "webpack --env.production && npm run cjs2adapt",
"build:debug": "webpack --env.production --env.debug && npm run cjs2adapt",
"cjs2adapt": "cat ./dist/videojs-hlsjs-plugin.js ./lib/cjs2-adapter.js >> ./dist/out.js && mv ./dist/out.js ./dist/videojs-hlsjs-plugin.js",
"dev": "webpack-dev-server --env.development",
"test": "npm run test:lint",
"test:lint": "eslint lib/"
},
"dependencies": {
"hls.js": "0.13.2"
},
"devDependencies": {
"ajv": "^6.4.0",
"babel-core": "6.26.0",
"babel-loader": "7.1.4",
"babel-preset-es2015": "6.24.1",
"cross-env": "4.0.0",
"eslint": "4.11.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.8.0",
"uglify-js": "2.6.0",
"uglifyjs-webpack-plugin": "2.1.1",
"webpack": "4.28.3",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14"
}
}