-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 910 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
44
45
{
"name": "basic-tts",
"version": "1.0.12",
"description": "Basic wrapper around browser TTS functionality",
"main": "basic-tts.js",
"files": [
"demo.html",
"basic-tts.js"
],
"scripts": {
"test": "jest --coverage",
"lint": "eslint ."
},
"jest": {
"collectCoverageFrom": [
"basic-tts.js"
]
},
"homepage": "https://github.com/gfyoung/basic-tts",
"author": "G. Young",
"repository": {
"type": "git",
"url": "https://github.com/gfyoung/basic-tts"
},
"bugs": {
"url": "https://github.com/gfyoung/basic-tts/issues"
},
"keywords": [
"brower speech synthesis",
"browser text to speech",
"browser speech api",
"speech synthesis",
"web speech api",
"text to speech",
"wrapper",
"speech",
"speak",
"tts"
],
"license": "MIT",
"devDependencies": {
"eslint": "^7.32.0",
"jest": "^27.1.1"
}
}