-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@svrooij/sonos-tts-polly",
"version": "0.0.0-development",
"description": "A small webserver that downloads Amazon Polly Text-To-Speech files and serves them to your sonos speaker. A companion to node package @svrooij/sonos.",
"main": "./dist/index.js",
"bin": {
"sonos-tts-polly": "./dist/index.js"
},
"files": [
"dist/**/*.*"
],
"scripts": {
"build": "tsc",
"compile": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./src/index.ts",
"lint-fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"prepack": "npm run compile",
"prod": "tsc && node ./dist/index.js",
"test": "npm run lint && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svrooij/node-sonos-tts-polly.git"
},
"keywords": [
"sonos",
"tts",
"node-sonos",
"home automation",
"polly"
],
"author": "Stephan van Rooij <[email protected]> (https://svrooij.nl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/svrooij/node-sonos-tts-polly/issues"
},
"homepage": "https://github.com/svrooij/node-sonos-tts-polly#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^14.14.31",
"@types/request": "^2.48.7",
"@types/yargs": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-plugin-import": "^2.20.2",
"typescript": "^4.4.4"
},
"dependencies": {
"aws-sdk": "^2.1012.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"node-id3": "^0.2.3",
"yargs": "^17.2.1"
},
"release": {
"branches": [
"master"
]
}
}