-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.09 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
{
"name": "asls-wsc-server",
"version": "1.0.0",
"description": "ASLS's implementation of a WSC (Web Show Control) server",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"author": "Timé Kadel",
"license": "ISC",
"dependencies": {
"@cubicleai/wrtc": "^0.7.0",
"@semantic-release/npm": "^12.0.1",
"rxjs": "^7.8.1",
"semantic-release": "^24.1.3",
"ws": "^8.11.0",
"yargs": "^17.5.1"
},
"release": {
"branches": [
"main",
{
"name": "staging",
"prerelease": "rc"
}
],
"dryRun": false,
"ci": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successComment": false,
"failComment": false,
"failTitle": false,
"labels": false,
"releasedLabels": false
}
],
[
"@semantic-release/npm",
{
"npmPublish": true
}
]
]
}
}