Turn audio into a shareable video. forked from nypublicradio/audiogram

package.json 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "audiogram",
  3. "version": "0.9.5",
  4. "description": "Turn audio into a shareable video.",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "npm run postinstall && bin/server",
  8. "worker": "bin/worker",
  9. "postinstall": "mkdir -p editor/js && browserify client/index.js > editor/js/bundle.js",
  10. "rebuild": "npm run postinstall",
  11. "watch": "mkdir -p editor/js && watchify client/index.js -o editor/js/bundle.js",
  12. "debug": "npm run postinstall && DEBUG=1 bin/server",
  13. "test": "rm -rf test/tmp && tape 'test/**/*-test.js'"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/nypublicradio/audiogram.git"
  18. },
  19. "keywords": [],
  20. "author": {
  21. "name": "Noah Veltman",
  22. "url": "https://twitter.com/veltman"
  23. },
  24. "license": "MIT",
  25. "dependencies": {
  26. "aws-sdk": "^2.2.39",
  27. "browserify": "^13.0.0",
  28. "canvas": "git+https://github.com/chearon/node-canvas.git#12971f64a66b",
  29. "compression": "^1.6.1",
  30. "d3": "4.10.0",
  31. "dotenv": "^2.0.0",
  32. "express": "^4.13.3",
  33. "jquery": "^2.2.1",
  34. "mkdirp": "^0.5.1",
  35. "morgan": "^1.7.0",
  36. "multer": "^1.1.0",
  37. "node-ffprobe": "^1.2.2",
  38. "redis": "^2.4.2",
  39. "rimraf": "^2.5.0",
  40. "smartquotes": "^1.0.0",
  41. "underscore": "^1.8.3",
  42. "uuid": "^3.0.1",
  43. "webaudio-peaks": "0.0.5",
  44. "winston": "^2.2.0"
  45. },
  46. "devDependencies": {
  47. "supertest": "^1.2.0",
  48. "tape": "^4.6.0",
  49. "watchify": "^3.7.0"
  50. }
  51. }