package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@sindresorhus/is",
  3. "version": "0.14.0",
  4. "description": "Type check values: `is.string('🦄') //=> true`",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "main": "dist/index.js",
  13. "engines": {
  14. "node": ">=6"
  15. },
  16. "scripts": {
  17. "lint": "tslint --format stylish --project .",
  18. "build": "del dist && tsc",
  19. "test": "npm run lint && npm run build && ava dist/tests",
  20. "prepublish": "npm run build && del dist/tests"
  21. },
  22. "files": [
  23. "dist"
  24. ],
  25. "keywords": [
  26. "type",
  27. "types",
  28. "is",
  29. "check",
  30. "checking",
  31. "validate",
  32. "validation",
  33. "utility",
  34. "util",
  35. "typeof",
  36. "instanceof",
  37. "object",
  38. "assert",
  39. "assertion",
  40. "test",
  41. "kind",
  42. "primitive",
  43. "verify",
  44. "compare"
  45. ],
  46. "devDependencies": {
  47. "@sindresorhus/tsconfig": "^0.1.0",
  48. "@types/jsdom": "^11.12.0",
  49. "@types/node": "^10.12.10",
  50. "@types/tempy": "^0.2.0",
  51. "@types/zen-observable": "^0.8.0",
  52. "ava": "^0.25.0",
  53. "del-cli": "^1.1.0",
  54. "jsdom": "^11.6.2",
  55. "rxjs": "^6.3.3",
  56. "tempy": "^0.2.1",
  57. "tslint": "^5.9.1",
  58. "tslint-xo": "^0.10.0",
  59. "typescript": "^3.2.1",
  60. "zen-observable": "^0.8.8"
  61. },
  62. "types": "dist/index.d.ts"
  63. }