-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "js-player-module-brightcove",
"version": "6.4.3",
"description": "Brightcove custom player using the Brightcove Player API.",
"keywords": [
"Brightcove",
"Brightcove Player",
"Brightcove Player API",
"Player",
"Player API",
"custom player",
"plugin"
],
"author": "yama-dev",
"license": "MIT",
"main": "./dist/js-player-module-brightcove.js",
"scripts": {
"start": "npm install && npm run dev",
"dev": "npm-run-all -p webpack:develop server",
"prod": "npm-run-all -p webpack:build",
"server": "browser-sync start --server ./ --directory ./examples --files **/*.css **/*.js **/*.html",
"webpack:develop": "webpack --progress --color --watch --stats-error-details",
"webpack:build": "webpack --mode=production --progress --color"
},
"repository": {
"type": "git",
"url": "https://github.com/yama-dev/js-player-module-brightcove"
},
"bugs": {
"url": "https://github.com/yama-dev/js-player-module-brightcove/issues",
"email": "[email protected]"
},
"devDependencies": {
"browser-sync": "^2.27.4",
"npm-run-all": "^4.1.5",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.58.0",
"webpack-cli": "^4.9.0"
},
"dependencies": {
"@yama-dev/js-dom": "^0.1.1",
"@yama-dev/js-parse-module": "^0.2.1"
}
}