cc5b37699db0f39cb47e3bbf6eda3412d31c811734701849c850f47b472889b9bb65670ba20382e34eefbadcd0717b36f78ba5b15cf514d8bbdd69a946d9ef 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "check-types",
  3. "version": "8.0.3",
  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. "chai": "4.2.x",
  33. "jshint": "^2.9.7",
  34. "mocha": "5.2.x",
  35. "please-release-me": "^2.1.2",
  36. "uglify-js": "3.4.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. }