-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.91 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "slackonos",
"version": "2.3.3",
"description": "Democratic Slack bot for controlling Sonos speakers with community voting",
"main": "index.js",
"scripts": {
"pretest": "if [ ! -f 'config/config.json' ]; then cp 'config/config.json.example' 'config/config.json'; fi",
"test": "NODE_ENV=test mocha --reporter spec 'test/**/*.mjs' --ignore 'test/tools/**' --exit",
"test:coverage": "NODE_ENV=test c8 --reporter=text --reporter=html --reporter=lcov mocha --reporter spec 'test/**/*.mjs' --ignore 'test/tools/**' --exit",
"test:record": "node test/tools/record-spotify-responses.mjs",
"test:integration": "node test/tools/integration-test-suite.mjs",
"test:integration:verbose": "node test/tools/integration-test-suite.mjs --verbose"
},
"keywords": [
"sonos",
"slack",
"spotify",
"bot",
"discord",
"bot",
"discord",
"slackonos"
],
"repository": {
"type:": "git",
"url": "git@github.com:htilly/SlackONOS.git"
},
"devDependencies": {
"c8": "^11.0.0",
"chai": "6.2.2",
"mocha": "^11.7.6",
"sinon": "^22.0.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"@jsfeb26/urllib-sync": "^1.1.4",
"@sefinek/google-tts-api": "^2.1.13",
"@simplewebauthn/server": "^13.3.1",
"@slack/rtm-api": "^7.0.4",
"@slack/socket-mode": "^2.0.7",
"@slack/web-api": "^7.16.0",
"bcrypt": "^6.0.0",
"discord.js": "^14.26.4",
"lodash": "^4.18.1",
"mp3-duration": "^1.1.0",
"nconf": "^0.13.0",
"openai": "^6.42.0",
"posthog-node": "^5.36.3",
"selfsigned": "^5.5.0",
"sonos": "^1.14.3",
"soundcraft-ui-connection": "^6.0.3",
"urlencode": "^2.0.0",
"winston": "^3.18.3",
"xml2js": "^0.6.2"
},
"engines": {
"node": ">=22.0.0"
},
"overrides": {
"axios": "^1.17.0",
"serialize-javascript": "^7.0.5",
"undici": "^7.0.0",
"diff": "^8.0.3",
"ip": "^2.0.1"
}
}