coffee-script.json 954 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "coffee-script",
  3. "description": "Unfancy JavaScript",
  4. "keywords": ["javascript", "language", "coffeescript", "compiler"],
  5. "author": "Jeremy Ashkenas",
  6. "version": "1.6.2",
  7. "licenses": [{
  8. "type": "MIT",
  9. "url": "https://raw.github.com/jashkenas/coffee-script/master/LICENSE"
  10. }],
  11. "engines": {
  12. "node": ">=0.8.0"
  13. },
  14. "directories" : {
  15. "lib" : "./lib/coffee-script"
  16. },
  17. "main" : "./lib/coffee-script/coffee-script",
  18. "bin": {
  19. "coffee": "./bin/coffee",
  20. "cake": "./bin/cake"
  21. },
  22. "scripts": {
  23. "test": "node ./bin/cake test"
  24. },
  25. "homepage": "http://coffeescript.org",
  26. "bugs": "https://github.com/jashkenas/coffee-script/issues",
  27. "repository": {
  28. "type": "git",
  29. "url": "git://github.com/jashkenas/coffee-script.git"
  30. },
  31. "devDependencies": {
  32. "uglify-js": "~2.2",
  33. "jison": ">=0.2.0"
  34. }
  35. }