forked from xiyuyizhi/vod-fp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 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
73
74
75
76
77
{
"name": "vod-fp",
"version": "1.0.0",
"description": "MSE-EME player (hls & fmp4) , write with functional style",
"directories": {
"test": "tests"
},
"main": "lib/vod-fp.min.js",
"scripts": {
"dev": " BABEL_ENV=dev DEV=player PORT=9000 webpack-dev-server --config ./scripts/webpack.dev.js --display-error-details",
"mux": " BABEL_ENV=dev DEV=mux PORT=9001 webpack-dev-server --config ./scripts/webpack.dev.js --display-error-details",
"demo": "cd examples && npm run start",
"build:mux": "BABEL_ENV=dev BUILD=mux webpack --config ./scripts/webpack.product.js --display-error-details",
"build:player": "BABEL_ENV=dev BUILD=player webpack --config ./scripts/webpack.product.js --display-error-details",
"build:util": "BABEL_ENV=dev BUILD=utility webpack --config ./scripts/webpack.product.js --display-error-details",
"build:demo": "cd examples && npm run build",
"build:deploy": "rm -rf docs && mv examples/build docs && echo 'move to docs' "
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"eslint packages/*/src/**.js",
"git add"
]
},
"ignore": [
"scripts/**.js",
"packages/**/test/**.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiyuyizhi/vod-fp.js.git"
},
"keywords": [
"MSE",
"EME",
"hls",
"fmp4",
"h264",
"fmp4",
"ts"
],
"author": "xiyuyizhi",
"license": "ISC",
"bugs": {
"url": "https://github.com/xiyuyizhi/vod-fp.js/issues"
},
"homepage": "https://github.com/xiyuyizhi/vod-fp.js#readme",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-import": "^1.11.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"eslint": "^5.15.2",
"eslint-config-airbnb-base": "^13.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"lerna": "^3.0.0-beta.21",
"lint-staged": "^8.1.5",
"mocha": "^6.0.2",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webworkify-webpack": "^2.1.5"
}
}