Ability to auto-discover sonos devices or find by using a seed ip

This commit is contained in:
simojenki
2021-01-29 16:54:38 +11:00
parent 45fe62841f
commit 5cd98a5ea6
12 changed files with 2881 additions and 578 deletions

View File

@@ -18,19 +18,21 @@
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/jest": "^26.0.20",
"@types/mocha": "^8.2.0",
"@types/supertest": "^2.0.10",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"supertest": "^6.1.3",
"ts-jest": "^26.4.4",
"ts-mockito": "^2.6.1",
"ts-node": "^9.1.1"
},
"scripts": {
"build": "tsc",
"start": "node ./build/app.js",
"dev": "nodemon ./src/app.ts",
"test": "nyc ./node_modules/.bin/_mocha 'tests/**/*.test.ts'",
"test": "jest",
"testw": "mocha --require ts-node/register --watch --watch-files tests/**/* tests/**/*.test.ts"
}
}