package.json 930 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "is-primitive",
  3. "description": "Returns `true` if the value is a primitive. ",
  4. "version": "2.0.0",
  5. "homepage": "https://github.com/jonschlinkert/is-primitive",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/jonschlinkert/is-primitive.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/is-primitive/issues"
  16. },
  17. "license": {
  18. "type": "MIT",
  19. "url": "https://github.com/jonschlinkert/is-primitive/blob/master/LICENSE"
  20. },
  21. "files": [
  22. "index.js"
  23. ],
  24. "main": "index.js",
  25. "engines": {
  26. "node": ">=0.10.0"
  27. },
  28. "scripts": {
  29. "test": "mocha"
  30. },
  31. "devDependencies": {
  32. "mocha": "*",
  33. "should": "^4.0.4"
  34. },
  35. "keywords": [
  36. "boolean",
  37. "check",
  38. "number",
  39. "primitive",
  40. "string",
  41. "symbol",
  42. "type",
  43. "typeof",
  44. "util"
  45. ]
  46. }