-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.19 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "ssml-split",
"version": "0.5.0",
"description": "Splits long texts with SSML tags by batches suitable for working with AWS Polly TTS and Google Cloud Text to Speech.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jvandenaardweg/ssml-split.git"
},
"author": "Jordy van den Aardweg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jvandenaardweg/ssml-split/issues"
},
"homepage": "https://github.com/jvandenaardweg/ssml-split#readme",
"directories": {
"lib": "lib"
},
"keywords": [
"ssml",
"aws",
"google",
"google-text-to-speech",
"aws-polly",
"text-to-speech",
"split",
"splitter",
"ssml-parsing",
"tts"
],
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"cover": "tap test/*.js --coverage",
"update": "npm-check --update",
"release": "release-it --no-npm.publish",
"typescript:check": "tsc -p ./ --noEmit",
"build": "tsc",
"dev": "tsc -p ./ --noEmit -w",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint -c tslint.json 'src/**/*.ts' --fix"
},
"release-it": {
"hooks": {
"before:init": [
"npm run lint",
"npm run typescript:check",
"npm run build",
"npm test"
],
"after:bump": "npx auto-changelog -p"
}
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"coverage"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"collectCoverageFrom": [
"src/**",
"!**/@types/**"
]
},
"devDependencies": {
"@types/jest": "^24.0.25",
"auto-changelog": "^1.16.2",
"jest": "^24.9.0",
"npm-check": "^5.9.0",
"release-it": "^12.4.3",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4",
"typescript-tslint-plugin": "^0.5.5"
},
"dependencies": {
"polly-text-split": "^0.1.4"
}
}