UNPKG

pronunciation-finder

Version:

An application for getting audio files with pronunciation from public dictionaries

61 lines (60 loc) 1.34 kB
{ "name": "pronunciation-finder", "description": "An application for getting audio files with pronunciation from public dictionaries", "homepage": "https://github.com/lkazberova/pronunciation-finder#readme", "author": { "name": "Leisan Kazberova", "url": "http://github.com/lkazberova" }, "version": "0.8.0", "main": "index.js", "license": "MIT", "dependencies": { "audio-2.0.0": "^2.0.0", "bluebird": "^3.7.2", "cheerio": "^1.0.0-rc.5", "commander": "^7.0.0", "fs": "^0.0.1-security", "lamejs": "^1.2.0", "path": "^0.12.7", "play-sound": "^1.1.3", "request": "^2.88.2", "request-promise": "^4.2.6" }, "pkg": { "scripts": "*.js" }, "keywords": [ "dictionary", "terminal", "pronunciation", "transcription" ], "repository": { "type": "git", "url": "https://github.com/lkazberova/pronunciation-finder.git" }, "bin": { "pronunciation-finder": "./index.js" }, "scripts": { "prettier": "prettier --write \"**/*.js\"", "start": "node ./index.js" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "devDependencies": { "husky": "^4.3.8", "lint-staged": "^10.5.3", "prettier": "^2.2.1" }, "lint-staged": { "*.js": [ "npm run prettier", "git add" ] } }