package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "check-types",
  3. "version": "7.4.0",
  4. "description": "A little library for asserting types and values.",
  5. "homepage": "https://gitlab.com/philbooth/check-types.js",
  6. "bugs": "https://gitlab.com/philbooth/check-types.js/issues",
  7. "license": "MIT",
  8. "author": "Phil Booth <pmbooth@gmail.com> (https://philbooth.me/)",
  9. "main": "./src/check-types",
  10. "repository": {
  11. "type": "git",
  12. "url": "https://gitlab.com/philbooth/check-types.js.git"
  13. },
  14. "keywords": [
  15. "type",
  16. "types",
  17. "type-check",
  18. "type-checking",
  19. "duck-typing",
  20. "arguments",
  21. "parameters",
  22. "values",
  23. "data",
  24. "contract",
  25. "assert",
  26. "check",
  27. "verify",
  28. "safe",
  29. "safety"
  30. ],
  31. "devDependencies": {
  32. "jshint": "2.9.x",
  33. "mocha": "3.2.x",
  34. "chai": "3.5.x",
  35. "uglify-js": "2.7.x",
  36. "please-release-me": "2.0.x"
  37. },
  38. "scripts": {
  39. "lint": "jshint ./src/check-types.js",
  40. "test": "mocha --ui tdd --reporter spec --colors ./test/check-types.js",
  41. "minify": "uglifyjs ./src/check-types.js --compress --mangle --output ./src/check-types.min.js"
  42. },
  43. "files": [
  44. "COPYING",
  45. "HISTORY.md",
  46. "src"
  47. ]
  48. }