-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.73 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
{
"name": "@playkit-js/hotspots",
"version": "3.2.11",
"private": false,
"bugs": {
"url": "https://github.com/kaltura/playkit-js-hotspots/issues"
},
"homepage": "https://github.com/kaltura/playkit-js-hotspots#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kaltura/playkit-js-hotspots.git"
},
"dependencies": {
"@playkit-js/common": "^1.2.9"
},
"devDependencies": {
"@playkit-js/kaltura-player-js": "canary",
"@playkit-js/ui-managers": "1.4.3-canary.0-b33eab0",
"conventional-github-releaser": "3.1.3",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"cypress": "13.13.1",
"playwright-webkit": "^1.33.0",
"prettier": "^2.6.2",
"sass": "^1.52.3",
"sass-loader": "^12.6.0",
"standard-version": "^9.3.2",
"style-loader": "1.3.0",
"ts-loader": "^9.3.0",
"typescript": "^4.9.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"peerDependencies": {
"@playkit-js/kaltura-player-js": "canary"
},
"license": "AGPL-3.0",
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md",
"src"
],
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "webpack --mode production",
"dev": "webpack-dev-server --mode development",
"watch": "webpack --progress --color --watch --mode development",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cy:open": "cypress open",
"cy:run": "yarn run cy:run:chrome && yarn run cy:run:firefox && yarn run cy:run:edge && yarn run cy:run:safari",
"cy:run:chrome": "cypress run --browser chrome --config video=false",
"cy:run:firefox": "cypress run --browser firefox --config video=false",
"cy:run:edge": "cypress run --browser edge --config video=false",
"cy:run:safari": "cypress run --browser webkit --config video=false",
"test:prepare": "yarn run build && yes | cp -i ./dist/playkit-hotspots.js ./cypress/public/plugin.js",
"test:watch": "yarn run test:prepare && cypress open",
"test": "yarn run test:prepare && yarn run cy:run",
"release": "standard-version",
"pushTaggedRelease": "git push --follow-tags --no-verify origin master",
"prettier:fix": "prettier --write ."
},
"publishConfig": {
"access": "public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"kaltura": {
"name": "playkit-js-hotspots",
"dependencies": {
"playkit-kaltura-cuepoints": "3.0.15",
"playkit-ui-managers": "1.6.1"
}
}
}