-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 KB
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"dev": "lerna run dev --stream --parallel",
"test": "lerna run test",
"test:e2e": "playwright test",
"examples": "parcel -p 1234 examples/index.html --no-cache",
"lerna:version": "lerna version --conventional-commits --no-changelog",
"publish": "lerna publish from-package --yes --ignore-scripts --no-verify-access"
},
"author": "Eyevinn Technology <work@eyevinn.se>",
"contributors": [
"Benjamin Wallberg <benjamin.wallberg@eyevinn.se> (Eyevinn Technology AB)"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Eyevinn/web-player.git"
},
"keywords": [
"html-player",
"video-player"
],
"devDependencies": {
"@osaas/client-core": "^0.3.0",
"@playwright/test": "^1.51.0",
"@types/jest": "^28.1.7",
"events": "^3.3.0",
"jest-environment-jsdom": "^28.1.3",
"lerna": "^9.0.7",
"microbundle": "^0.15.1",
"parcel": "^2.10.3",
"prettier": "^2.1.1",
"sass": "^1.26.10",
"typescript": "^4.0.2"
}
}