-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.76 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.76 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
{
"name": "slackonos",
"version": "2.3.0",
"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": "^10.1.3",
"chai": "6.2.2",
"mocha": "^11.7.5",
"sinon": "^21.0.1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@jsfeb26/urllib-sync": "^1.1.4",
"@sefinek/google-tts-api": "^2.1.11",
"@simplewebauthn/server": "^13.2.2",
"@slack/rtm-api": "^7.0.4",
"@slack/socket-mode": "^2.0.5",
"@slack/web-api": "^7.12.0",
"bcrypt": "^6.0.0",
"discord.js": "^14.17.3",
"lodash": "^4.17.23",
"mp3-duration": "^1.1.0",
"nconf": "^0.13.0",
"openai": "^6.16.0",
"posthog-node": "^5.24.9",
"selfsigned": "^5.5.0",
"sonos": "^1.14.2",
"soundcraft-ui-connection": "^4.1.1",
"urlencode": "^2.0.0",
"winston": "^3.18.3",
"xml2js": "^0.6.2"
},
"engines": {
"node": ">=17.0.0"
}
}