forked from fabien88/ssmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.46 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
64
{
"name": "ssmd",
"version": "2.0.0",
"description": "Speech Synthesis Markdown (SSMD) is a lightweight alternative syntax for Speech Synthesis Markup Language (SSML)",
"keywords": [
"SSMD",
"SSML",
"markdown"
],
"homepage": "https://github.com/fabien88/ssmd#readme",
"bugs": {
"url": "https://github.com/fabien88/ssmd/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabien88/ssmd.git"
},
"license": "MIT",
"author": "Fabien Lenoir",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch"
},
"jest": {
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
},
"dependencies": {
"@fabien88/simple-text-parser": "^1.0.0",
"ramda": "^0.28.0",
"ssml-builder": "^0.4.3",
"xml-formatter": "^2.6.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/xml-formatter": "^2.1.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}