-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
42 lines (42 loc) · 1.53 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
{
"name": "root",
"private": true,
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test",
"dev": "lerna run dev --stream --parallel",
"start": "lerna run server --stream --parallel --no-prefix",
"lerna:version": "lerna version --changelog-preset conventionalcommits --conventional-commits",
"lerna:majorversion": "lerna version major --changelog-preset conventionalcommits --conventional-commits",
"publish": "lerna publish from-package --yes --ignore-scripts --no-verify-access",
"deploy:dev": "git tag $(git rev-parse --short HEAD)-dev && git push --tags"
},
"author": "Eyevinn Technology <work@eyevinn.se>",
"contributors": [
"Jonas Birmé <jonas.birme@eyevinn.se> (Eyevinn Technology AB)",
"Benjamin Wallberg <benjamin.wallberg@eyevinn.se> (Eyevinn Technology AB)",
"Marcus Spangenberg <marcus.spangenberg@eyevinn.se> (Eyevinn Technology AB)",
"Oliver Shin <oliver.shin@eyevinn.se> (Eyevinn Technology AB)",
"Robin Olsson <robin.olsson@eyevinn.se> (Eyevinn Technology AB)"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Eyevinn/whip.git"
},
"keywords": [
"webrtc",
"whip"
],
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node-fetch": "^2.6.1",
"@types/node": "^17.0.23",
"@types/sdp-transform": "^2.4.5",
"conventional-changelog-conventionalcommits": "^4.6.3",
"lerna": "^5.5.1",
"prettier": "^2.5.1"
}
}