discussion
Version:
Basic implementating to help altering between ongoing SpeechRecognition and intermittant SpeechSynthesis
50 lines (49 loc) • 1.41 kB
JSON
{
"name": "discussion",
"version": "0.0.2",
"description": "Basic implementating to help altering between ongoing SpeechRecognition and intermittant SpeechSynthesis",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/janmarques/discussion"
},
"keywords": [
"SpeechSynthesis",
"SpeechRecognition",
"Speaking",
"Listening"
],
"author": "Jan Marques",
"license": "ISC",
"bugs": {
"url": "https://github.com/janmarques/discussion"
},
"homepage": "https://github.com/janmarques/discussion",
"devDependencies": {
"@types/dom-speech-recognition": "^0.0.1",
"@types/jest": "^29.2.3",
"codecov": "^3.1.0",
"jest": "^29.3.1",
"prettier": "^1.13.2",
"ts-jest": "^29.0.3",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"typescript": "^4.9.3"
},
"files": [
"lib/**/*"
]
}