-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
93 lines (93 loc) · 3.23 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "hjplayer",
"version": "1.0.4",
"description": "hjplayer, a HTML5 Player, can play flv and hls by Media Source Extension, based on typescript;",
"main": "./dist/hjplayer.js",
"module": "./dist/hjplayer.js",
"jsnext:main": "./dist/hjplayer.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "npm run build:prod",
"build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details",
"build:prod": "cross-env NODE_ENV=production webpack --mode production --config ./webpack.config.js --progress --color --display-error-details --bail",
"clean": "npm cache clear && rimraf -- dist",
"server": "npm run server:dev",
"server:dev": "webpack-dev-server --mode development --config ./webpack.config.js --hot --inline --progress --watch --open",
"server:prod": "cross-env NODE_ENV=production webpack-dev-server --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --inline --progress --watch --open --content-base dist/",
"start": "npm run server:dev",
"test": "karma start",
"eslint": "eslint src --ext .ts"
},
"repository": {
"type": "git",
"url": "https://github.com/huajiaofrontend/HJPlayer.git"
},
"keywords": [
"HJPlayer",
"Player",
"HLS",
"FLV",
"MSE"
],
"author": "huajiaofrontend",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/huajiaofrontend/HJPlayer/issues"
},
"homepage": "https://github.com/huajiaofrontend/HJPlayer#readme",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.7.1",
"@types/jasmine": "^2.5.53",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"@typescript-eslint/typescript-estree": "^2.5.0",
"awesome-typescript-loader": "^5.2.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"cross-env": "^5.0.1",
"css-loader": "^1.0.0",
"ejs-loader": "^0.3.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-typescript": "^0.14.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine": "^3.2.0",
"jasmine-core": "^3.2.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^3.0.0",
"rimraf": "^2.6.1",
"source-map-loader": "^0.2.1",
"style-loader": "^0.22.1",
"tslint": "^5.5.0",
"tslint-loader": "^3.5.3",
"typescript": "^3.6.4",
"typescript-eslint-parser": "^22.0.0",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"es6-promise": "^4.2.8",
"url-toolkit": "^2.1.6",
"webworkify-webpack": "^2.1.5"
},
"directories": {
"doc": "docs"
}
}