UNPKG

927 BJSONView Raw
1{
2 "name": "google-tts-api",
3 "version": "2.0.2",
4 "description": "Google TTS (Text-To-Speech) for node.js",
5 "main": "dist/index.js",
6 "scripts": {
7 "build": "tsc -p .",
8 "test": "npm run build && jest",
9 "cover": "npm run build && jest --coverage"
10 },
11 "repository": {
12 "type": "git",
13 "url": "git+https://github.com/zlargon/google-tts.git"
14 },
15 "keywords": [
16 "google",
17 "google-tts",
18 "text-to-speech"
19 ],
20 "author": "zlargon",
21 "license": "MIT",
22 "bugs": {
23 "url": "https://github.com/zlargon/google-tts/issues"
24 },
25 "homepage": "https://github.com/zlargon/google-tts#readme",
26 "dependencies": {
27 "axios": "^0.21.0"
28 },
29 "devDependencies": {
30 "coveralls": "^3.1.0",
31 "is-base64": "^1.1.0",
32 "jest": "^26.6.3",
33 "typescript": "^4.1.3"
34 },
35 "jest": {
36 "testEnvironment": "node",
37 "coverageReporters": [
38 "lcov",
39 "text",
40 "html"
41 ]
42 }
43}