package.json 651 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "core-util-is",
  3. "version": "1.0.2",
  4. "description": "The `util.is*` functions introduced in Node v0.12.",
  5. "main": "lib/util.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/isaacs/core-util-is"
  9. },
  10. "keywords": [
  11. "util",
  12. "isBuffer",
  13. "isArray",
  14. "isNumber",
  15. "isString",
  16. "isRegExp",
  17. "isThis",
  18. "isThat",
  19. "polyfill"
  20. ],
  21. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/isaacs/core-util-is/issues"
  25. },
  26. "scripts": {
  27. "test": "tap test.js"
  28. },
  29. "devDependencies": {
  30. "tap": "^2.3.0"
  31. }
  32. }