package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "coffeeify",
  3. "version": "3.0.1",
  4. "description": "browserify plugin for coffeescript with support for mixed .js and .coffee files",
  5. "main": "index.js",
  6. "dependencies": {
  7. "convert-source-map": "^1.3.0",
  8. "through2": "^2.0.0"
  9. },
  10. "peerDependencies": {
  11. "coffeescript": ">1.9.2 <3"
  12. },
  13. "devDependencies": {
  14. "browserify": "^14.4.0",
  15. "proxyquire": "^1.8.0",
  16. "sinon": "^4.0.2",
  17. "tap": "^10.7.2",
  18. "test-all-versions": "^3.1.1",
  19. "through": "^2.3.8"
  20. },
  21. "scripts": {
  22. "test": "tav coffeescript '>1.9.2 <99' tap test/*.js"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/jnordberg/coffeeify.git"
  27. },
  28. "homepage": "https://github.com/jnordberg/coffeeify",
  29. "keywords": [
  30. "coffeescript",
  31. "coffee-script",
  32. "browserify",
  33. "v2",
  34. "js",
  35. "plugin",
  36. "transform"
  37. ],
  38. "contributors": [
  39. {
  40. "name": "James Halliday",
  41. "email": "mail@substack.net",
  42. "url": "http://substack.net"
  43. },
  44. {
  45. "name": "Johan Nordberg",
  46. "email": "code@johan-nordberg.com",
  47. "url": "http://johan-nordberg.com"
  48. }
  49. ],
  50. "license": "MIT"
  51. }