sber-salute-speech-recognition
Version:
A library that produces audio transcriptions using the SBER Salute Speech service.
128 lines (127 loc) • 3.29 kB
JSON
{
"name": "sber-salute-speech-recognition",
"version": "2.2.0",
"description": "A library that produces audio transcriptions using the SBER Salute Speech service.",
"main": "./lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"cm": "cz",
"lint": "eslint ./src/ --fix",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test:watch": "jest --watch",
"test": "jest --coverage --passWithNoTests",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RaftDigiAI/sber-salute-speech-recognition.git"
},
"license": "MIT",
"author": {
"name": "Aleksandr Konstantinov",
"email": "a.konstantinov@raftds.com",
"url": "https://github.com/konstantinov-raft"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"sber",
"salute",
"speech",
"recognition",
"sdk",
"api"
],
"bugs": {
"url": "https://github.com/RaftDigiAI/sber-salute-speech-recognition/issues"
},
"homepage": "https://github.com/RaftDigiAI/sber-salute-speech-recognition#readme",
"dependencies": {
"axios": "^1.4.0",
"music-metadata": "^7.13.4",
"qs": "^6.11.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/jest": "^27.5.2",
"@types/node": "^12.20.11",
"@types/qs": "^6.9.7",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.2.0",
"lint-staged": "^13.2.1",
"prettier": "^2.2.1",
"semantic-release": "^21.0.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}