-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
43 lines (43 loc) · 927 Bytes
/
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
{
"name": "google-tts-api",
"version": "2.0.2",
"description": "Google TTS (Text-To-Speech) for node.js",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p .",
"test": "npm run build && jest",
"cover": "npm run build && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zlargon/google-tts.git"
},
"keywords": [
"google",
"google-tts",
"text-to-speech"
],
"author": "zlargon",
"license": "MIT",
"bugs": {
"url": "https://github.com/zlargon/google-tts/issues"
},
"homepage": "https://github.com/zlargon/google-tts#readme",
"dependencies": {
"axios": "^0.21.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"is-base64": "^1.1.0",
"jest": "^26.6.3",
"typescript": "^4.1.3"
},
"jest": {
"testEnvironment": "node",
"coverageReporters": [
"lcov",
"text",
"html"
]
}
}