package.json 873 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "type-check",
  3. "version": "0.3.2",
  4. "author": "George Zahariev <z@georgezahariev.com>",
  5. "description": "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.",
  6. "homepage": "https://github.com/gkz/type-check",
  7. "keywords": [
  8. "type",
  9. "check",
  10. "checking",
  11. "library"
  12. ],
  13. "files": [
  14. "lib",
  15. "README.md",
  16. "LICENSE"
  17. ],
  18. "main": "./lib/",
  19. "bugs": "https://github.com/gkz/type-check/issues",
  20. "license": "MIT",
  21. "engines": {
  22. "node": ">= 0.8.0"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/gkz/type-check.git"
  27. },
  28. "scripts": {
  29. "test": "make test"
  30. },
  31. "dependencies": {
  32. "prelude-ls": "~1.1.2"
  33. },
  34. "devDependencies": {
  35. "livescript": "~1.4.0",
  36. "mocha": "~2.3.4",
  37. "istanbul": "~0.4.1",
  38. "browserify": "~12.0.1"
  39. }
  40. }