forked from OpenXbox/xbox-smartglass-core-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.39 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
{
"name": "xbox-smartglass-core-node",
"version": "0.6.10",
"description": "NodeJS smartglass library for controlling a Xbox",
"main": "src/smartglass.js",
"scripts": {
"test": "nyc --reporter=html --reporter=lcov --reporter=text ./node_modules/mocha/bin/mocha tests/",
"discovery": "DEBUG=smartglass:* ./examples/discovery.js",
"connect": "DEBUG=smartglass:* ./examples/connect.js",
"double_connect": "DEBUG=smartglass:* ./examples/double_connect.js",
"connect_channels": "DEBUG=smartglass:* ./examples/connect_channels.js",
"connect_disconnect": "DEBUG=smartglass:* ./examples/connect_and_disconnect.js",
"poweron": "DEBUG=smartglass:* ./examples/poweron.js",
"poweroff": "DEBUG=smartglass:* ./examples/poweroff.js"
},
"repository": {
"type": "git",
"url": "[email protected]:unknownskl/xbox-smartglass-core-node.git"
},
"author": "UnknownSKL (Jim Kroon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/unknownskl/xbox-smartglass-core-node/issues"
},
"homepage": "https://github.com/unknownskl/xbox-smartglass-core-node",
"keywords": [
"xbox",
"xbox one",
"smartglass"
],
"dependencies": {
"debug": "^4.3.2",
"elliptic": "^6.5.2",
"hex-to-binary": "^1.0.1",
"jsrsasign": "^10.3.0",
"uuid": "^8.3.2",
"uuid-parse": "^1.1.0"
},
"devDependencies": {
"mocha": "^9.1.3",
"nyc": "^15.1.0"
}
}