-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.16 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
{
"name": "wiki2ssml",
"version": "0.2.20",
"description": "Wiki2SSML provides the WikiVoice markup language used for fine-tuning synthesised voice.",
"license": "Apache-2.0",
"main": "index.js",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js ./src/wiki2ssml.js ./test/wiki2ssml-test.js",
"test": "./node_modules/mocha/bin/_mocha ./test/*-test.js",
"coverage": "./node_modules/nyc/bin/nyc.js --reporter=lcov mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baxtree/wiki2ssml.git"
},
"keywords": [
"ssml",
"wikitext",
"text-to-speech",
"voice tuning",
"amazon polly",
"google cloud tts",
"ibm watson tts",
"microsoft azure tts",
"nuance"
],
"author": {
"name": "Xi Bai",
"email": "xi.bai.ed@gmail.com"
},
"bugs": {
"url": "https://github.com/baxtree/wiki2ssml/issues"
},
"homepage": "https://github.com/baxtree/wiki2ssml#readme",
"dependencies": {
"peggy": "^3.0.2",
"prettify-xml": "^1.2.0"
},
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.43.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"xml2js": "^0.6.2"
}
}