package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "prelude-ls",
  3. "version": "1.1.2",
  4. "author": "George Zahariev <z@georgezahariev.com>",
  5. "description": "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.",
  6. "keywords": [
  7. "prelude",
  8. "livescript",
  9. "utility",
  10. "ls",
  11. "coffeescript",
  12. "javascript",
  13. "library",
  14. "functional",
  15. "array",
  16. "list",
  17. "object",
  18. "string"
  19. ],
  20. "main": "lib/",
  21. "files": [
  22. "lib/",
  23. "README.md",
  24. "LICENSE"
  25. ],
  26. "homepage": "http://preludels.com",
  27. "bugs": "https://github.com/gkz/prelude-ls/issues",
  28. "licenses": [
  29. {
  30. "type": "MIT",
  31. "url": "https://raw.github.com/gkz/prelude-ls/master/LICENSE"
  32. }
  33. ],
  34. "engines": {
  35. "node": ">= 0.8.0"
  36. },
  37. "repository": {
  38. "type": "git",
  39. "url": "git://github.com/gkz/prelude-ls.git"
  40. },
  41. "scripts": {
  42. "test": "make test"
  43. },
  44. "devDependencies": {
  45. "livescript": "~1.4.0",
  46. "uglify-js": "~2.4.12",
  47. "mocha": "~2.2.4",
  48. "istanbul": "~0.2.4",
  49. "browserify": "~3.24.13",
  50. "sinon": "~1.10.2"
  51. }
  52. }