package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "is",
  3. "version": "3.3.2",
  4. "main": "index.js",
  5. "scripts": {
  6. "prepublishOnly": "safe-publish-latest",
  7. "prepublish": "not-in-publish || npm run prepublishOnly",
  8. "pretest": "npm run lint",
  9. "test": "npm run --silent tests-only",
  10. "tests-only": "nyc tape 'test/**/*.js'",
  11. "posttest": "aud --production",
  12. "lint": "eslint ."
  13. },
  14. "author": {
  15. "name": "Enrico Marino",
  16. "url": "http://onirame.com"
  17. },
  18. "description": "the definitive JavaScript type testing library",
  19. "homepage": "https://github.com/enricomarino/is",
  20. "license": "MIT",
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/enricomarino/is.git"
  24. },
  25. "keywords": [
  26. "util",
  27. "type",
  28. "test"
  29. ],
  30. "contributors": [
  31. {
  32. "name": "Jordan Harband",
  33. "url": "https://github.com/ljharb"
  34. }
  35. ],
  36. "devDependencies": {
  37. "@ljharb/eslint-config": "^21.1.1",
  38. "aud": "^2.0.4",
  39. "eslint": "=8.8.0",
  40. "foreach": "^2.0.6",
  41. "in-publish": "^2.0.1",
  42. "make-generator-function": "^1.1.0",
  43. "nyc": "^10.3.2",
  44. "safe-publish-latest": "^2.0.0",
  45. "tape": "^5.7.5"
  46. },
  47. "testling": {
  48. "files": "test/index.js",
  49. "browsers": [
  50. "iexplore/6.0..latest",
  51. "firefox/3.0",
  52. "firefox/15.0..latest",
  53. "firefox/nightly",
  54. "chrome/4.0",
  55. "chrome/22.0..latest",
  56. "chrome/canary",
  57. "opera/10.0..latest",
  58. "opera/next",
  59. "safari/5.0.5..latest",
  60. "ipad/6.0..latest",
  61. "iphone/6.0..latest"
  62. ]
  63. },
  64. "engines": {
  65. "node": ">= 0.4"
  66. }
  67. }