forked from vlitejs/vlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.46 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
94
95
96
97
98
99
100
101
102
103
104
{
"name": "vlitejs",
"version": "4.2.0",
"description": "vLitejs is a fast and lightweight Javascript library for customizing video and audio player in Javascript with a minimalist theme (HTML5, Youtube, Vimeo, Dailymotion)",
"keywords": [
"video",
"audio",
"html5",
"youtube",
"vimeo",
"dailymotion",
"player",
"youtube api",
"vimeo api",
"pip",
"picture-in-picture",
"subtitle",
"cast",
"chromecast",
"airplay",
"monetization",
"ima-sdk"
],
"homepage": "https://vlite.js.org",
"bugs": "https://github.com/vlitejs/vlite/issues",
"repository": "https://github.com/vlitejs/vlite.git",
"license": "MIT",
"author": "Joris DANIEL",
"main": "dist/vlite.js",
"files": [
"dist",
"!dist/**/*.map"
],
"scripts": {
"build": "rm -rf ./dist/ && webpack --mode=production --config config/webpack.config.js",
"build:example": "rm -rf ./examples/dist/ && webpack --mode=production --config=./examples/webpack.config.js",
"clean": "rm -rf ./dist/ ./examples/dist/",
"start": "rm -rf ./dist/ && webpack --mode=development --config config/webpack.config.js",
"start:example": "rm -rf ./examples/dist/ && webpack serve --mode=development --config=./examples/webpack.config.js",
"test": "npm run test:eslint && npm run test:stylelint && npm run test:types && npm run test:markdown",
"test:eslint": "eslint ./src --config config/.eslintrc.js --ignore-pattern dist",
"test:eslint:fix": "eslint ./src --config config/.eslintrc.js --ignore-pattern dist --fix",
"test:markdown": "markdownlint-cli2 '**/*.md' '.github/*.md'",
"test:stylelint": "stylelint './src/**/*.css' './docs/theme/assets/stylesheets/**/*.css' --config ./config/stylelint.config.js",
"test:stylelint:fix": "stylelint './src/**/*.css' './docs/theme/assets/stylesheets/**/*.css' --config ./config/stylelint.config.js --fix",
"test:types": "tsc --noEmit"
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version",
"last 2 opera version",
"last 2 edge version",
"last 2 ios_saf version"
],
"prettier": "./config/prettier.config.js",
"dependencies": {
"validate-target": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.18.10",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"html-webpack-plugin": "^5.3.1",
"markdownlint-cli2": "^0.3.2",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.16",
"postcss-custom-media": "^8.0.2",
"postcss-import": "^14.1.0",
"postcss-loader": "^7.0.1",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^7.7.2",
"postcss-url": "^10.1.1",
"prettier": "^2.7.1",
"style-loader": "^3.3.1",
"stylelint": "^14.10.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^27.0.0",
"stylelint-prettier": "^2.0.0",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.10.0",
"webpack-manifest-plugin": "^5.0.0"
},
"engines": {
"node": ">=8.11.2"
}
}