-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "ivr-tester-transcriber-google-speech-to-text",
"version": "0.1.4",
"description": "Google Speech-to-Text integration for IVR Tester",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SketchingDev/ivr-tester.git"
},
"homepage": "https://github.com/SketchingDev/ivr-tester/tree/main/packages/transcriber-google-speech-to-text#google-speech-to-text-transcriber",
"keywords": [
"IVR",
"Interactive Voice Response",
"call flow",
"telephony",
"test",
"google speech-to-text",
"transcriber"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test:integration": "jest __tests__",
"clean": "rimraf dist/",
"build": "yarn clean && tsc --declaration",
"lint:prettier": "prettier --list-different '{src,__tests__}/**/*.ts' --write",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint": "yarn lint:prettier && yarn lint:eslint",
"prepare": "yarn build",
"doc": "yarn typedoc"
},
"files": [
"/dist"
],
"dependencies": {
"@google-cloud/speech": "^4.1.3",
"debug": "^4.3.1"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/getenv": "^1.0.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.6.4",
"ivr-tester": "0.x",
"jest": "^26.4.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"peerDependencies": {
"ivr-tester": "0.x"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"engines": {
"node": ">= 10.14.2"
},
"publishConfig": {
"access": "public"
}
}