package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "wavesurfer.js",
  3. "version": "2.0.0-beta02",
  4. "description": "Interactive navigable audio visualization using Web Audio and Canvas",
  5. "main": "dist/wavesurfer.min.js",
  6. "directories": {
  7. "example": "example"
  8. },
  9. "scripts": {
  10. "start": "webpack --env.plugins && webpack --env.htmlinit && webpack-dev-server",
  11. "start:htmlinit": "webpack && webpack --env.plugins && webpack-dev-server --env.htmlinit",
  12. "start:plugins": "webpack && webpack --env.htmlinit && webpack-dev-server --env.plugins",
  13. "build": "npm run build:normal & npm run build:minified",
  14. "build:normal": "webpack & webpack --env.plugins & webpack --env.htmlinit",
  15. "build:minified": "webpack --env.minify & webpack --env.plugins --env.minify & webpack --env.htmlinit --env.minify",
  16. "doc": "esdoc",
  17. "test": "BABEL_ENV=test karma start karma.conf.js"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/katspaugh/wavesurfer.js.git"
  22. },
  23. "author": "",
  24. "license": "BSD-3-Clause",
  25. "bugs": {
  26. "url": "https://github.com/katspaugh/wavesurfer.js/issues"
  27. },
  28. "devDependencies": {
  29. "babel-core": "^6.18.2",
  30. "babel-eslint": "^7.1.1",
  31. "babel-loader": "^6.2.7",
  32. "babel-plugin-add-module-exports": "^0.2.1",
  33. "babel-plugin-istanbul": "^2.0.3",
  34. "babel-plugin-transform-class-properties": "^6.22.0",
  35. "babel-preset-es2015": "^6.18.0",
  36. "babel-preset-es2015-native-modules": "^6.9.4",
  37. "babel-preset-stage-0": "^6.22.0",
  38. "babel-register": "^6.18.0",
  39. "debounce": "^1.0.0",
  40. "esdoc": "^0.5.2",
  41. "eslint": "^3.9.1",
  42. "eslint-loader": "^1.6.1",
  43. "jasmine-core": "^2.5.2",
  44. "karma": "^1.3.0",
  45. "karma-chrome-launcher": "2.0.0",
  46. "karma-coverage": "^1.1.1",
  47. "karma-jasmine": "1.0.2",
  48. "karma-jasmine-matchers": "3.0.1",
  49. "load-script": "^1.0.0",
  50. "karma-webpack": "^2.0.2",
  51. "webpack": "2",
  52. "webpack-dev-server": "2"
  53. },
  54. "homepage": "https://github.com/katspaugh/wavesurfer.js"
  55. }