microphone-stream
Version:
A stream of raw audio data from the microphone for use in browsers with getUserMedia
75 lines (74 loc) • 2.01 kB
JSON
{
"name": "microphone-stream",
"version": "6.0.1",
"description": "A stream of raw audio data from the microphone for use in browsers with getUserMedia",
"main": "dist/microphone-stream.js",
"types": "types/microphone-stream.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/microphone-stream/microphone-stream/.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"autofix": "eslint --fix src/**/*.ts",
"test-integration": "karma start --single-run",
"pretest": "npm run build",
"test": "npm run lint && npm run test-integration",
"watch": "karma start"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"keywords": [
"webrtc",
"getUserMedia",
"WebAudio",
"audio",
"microphone",
"stream",
"record"
],
"author": "Jakob Miland <saebekassebil@gmail.com>",
"contributors": [
{
"name": "Nathan Friedly",
"url": "http://nfriedly.com"
},
{
"name": "Trivikram Kamat",
"url": "https://twitter.com/trivikram"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/microphone-stream/microphone-stream/issues"
},
"homepage": "https://github.com/microphone-stream/microphone-stream#readme",
"dependencies": {
"buffer-from": "^1.1.1",
"readable-stream": "^3.6.0"
},
"devDependencies": {
"@types/buffer-from": "^1.1.0",
"@types/mocha": "^8.2.0",
"@types/readable-stream": "^2.3.9",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"get-user-media-promise": "^1.1.4",
"husky": "^4.3.8",
"karma": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.4.0",
"mocha": "^8.2.1",
"prettier": "2.2.1",
"typescript": "^4.1.3"
}
}