package.json 545 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "say",
  3. "description": "TTS (Text To Speech) Module for Node.js",
  4. "version": "0.16.0",
  5. "author": "Marak Squires",
  6. "license": "MIT",
  7. "scripts": {
  8. "test": "standard && ./examples/basic-callback.js",
  9. "lint": "standard",
  10. "lint-fix": "standard --fix"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "http://github.com/Marak/say.js.git"
  15. },
  16. "typings": "index.d.ts",
  17. "engines": {
  18. "node": ">=6.9"
  19. },
  20. "devDependencies": {
  21. "standard": "^12.0.1"
  22. },
  23. "dependencies": {
  24. "one-time": "0.0.4"
  25. }
  26. }