timing-provider-server 4.0.4 → 4.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/package.json +16 -16
package/README.md
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
**A command line tool to spin up a server which can be used with the timing-provider.**
|
|
4
4
|
|
|
5
|
-
[](https://github.com/chrisguttandin/timing-provider-server/network/dependencies)
|
|
6
5
|
[](https://www.npmjs.com/package/timing-provider-server)
|
|
7
6
|
|
|
8
7
|
This command line tool spins up a server which can be used as the signaling server for the [timing-provider](https://github.com/chrisguttandin/timing-provider).
|
|
@@ -21,7 +20,7 @@ Afterwards the server can be started by executing the following command:
|
|
|
21
20
|
timing-provider-server
|
|
22
21
|
```
|
|
23
22
|
|
|
24
|
-
It is also possible to
|
|
23
|
+
It is also possible to run the command above without explicitly installing a local version of this package first like this:
|
|
25
24
|
|
|
26
25
|
```shell
|
|
27
26
|
npx timing-provider-server
|
package/package.json
CHANGED
|
@@ -18,35 +18,35 @@
|
|
|
18
18
|
}
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"fast-unique-numbers": "^6.0.
|
|
21
|
+
"fast-unique-numbers": "^6.0.21",
|
|
22
22
|
"tslib": "^2.4.0",
|
|
23
|
-
"typescript": "^4.
|
|
24
|
-
"ws": "^8.8.
|
|
23
|
+
"typescript": "^4.8.3",
|
|
24
|
+
"ws": "^8.8.1",
|
|
25
25
|
"yargs": "^17.5.1"
|
|
26
26
|
},
|
|
27
27
|
"description": "A command line tool to spin up a server which can be used with the timing-provider.",
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@babel/cli": "^7.
|
|
30
|
-
"@babel/core": "^7.
|
|
31
|
-
"@babel/preset-env": "^7.
|
|
32
|
-
"@babel/register": "^7.
|
|
33
|
-
"@commitlint/cli": "^17.
|
|
34
|
-
"@commitlint/config-angular": "^17.
|
|
29
|
+
"@babel/cli": "^7.18.10",
|
|
30
|
+
"@babel/core": "^7.19.0",
|
|
31
|
+
"@babel/preset-env": "^7.19.0",
|
|
32
|
+
"@babel/register": "^7.18.9",
|
|
33
|
+
"@commitlint/cli": "^17.1.2",
|
|
34
|
+
"@commitlint/config-angular": "^17.1.0",
|
|
35
35
|
"@types/ws": "^8.5.3",
|
|
36
|
-
"@types/yargs": "^17.0.
|
|
36
|
+
"@types/yargs": "^17.0.12",
|
|
37
37
|
"chai": "^4.3.6",
|
|
38
|
-
"commitizen": "^4.2.
|
|
38
|
+
"commitizen": "^4.2.5",
|
|
39
39
|
"cz-conventional-changelog": "^3.3.0",
|
|
40
|
-
"eslint": "^8.
|
|
41
|
-
"eslint-config-holy-grail": "^52.0.
|
|
40
|
+
"eslint": "^8.23.0",
|
|
41
|
+
"eslint-config-holy-grail": "^52.0.33",
|
|
42
42
|
"husky": "^8.0.1",
|
|
43
43
|
"mocha": "^10.0.0",
|
|
44
|
-
"prettier": "^2.7.
|
|
44
|
+
"prettier": "^2.7.1",
|
|
45
45
|
"pretty-quick": "^3.1.3",
|
|
46
46
|
"rimraf": "^3.0.2",
|
|
47
47
|
"sinon": "^14.0.0",
|
|
48
48
|
"sinon-chai": "^3.7.0",
|
|
49
|
-
"tsconfig-holy-grail": "^11.1.
|
|
49
|
+
"tsconfig-holy-grail": "^11.1.36"
|
|
50
50
|
},
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": ">=12.20.1"
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"test:unit": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"unit\" ]; then mocha --bail --parallel --recursive --require config/mocha/config-unit.js test/unit; fi"
|
|
86
86
|
},
|
|
87
87
|
"type": "module",
|
|
88
|
-
"version": "4.0.
|
|
88
|
+
"version": "4.0.7"
|
|
89
89
|
}
|