package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "is-string",
  3. "version": "1.0.7",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "Is this value a JS String object or primitive? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepublishOnly": "safe-publish-latest",
  13. "prepublish": "not-in-publish || npm run prepublishOnly",
  14. "pretest": "npm run lint",
  15. "tests-only": "nyc tape 'test/**/*.js'",
  16. "test:corejs": "nyc tape test-corejs.js",
  17. "test": "npm run tests-only && npm run test:corejs",
  18. "posttest": "npx aud --production",
  19. "lint": "eslint .",
  20. "eccheck": "eclint check *.js **/*.js > /dev/null",
  21. "version": "auto-changelog && git add CHANGELOG.md",
  22. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/ljharb/is-string.git"
  27. },
  28. "keywords": [
  29. "String",
  30. "string",
  31. "ES6",
  32. "toStringTag",
  33. "@@toStringTag",
  34. "String object"
  35. ],
  36. "dependencies": {
  37. "has-tostringtag": "^1.0.0"
  38. },
  39. "devDependencies": {
  40. "@ljharb/eslint-config": "^17.6.0",
  41. "aud": "^1.1.5",
  42. "auto-changelog": "^2.3.0",
  43. "core-js": "^3.16.0",
  44. "eclint": "^2.8.1",
  45. "eslint": "^7.32.0",
  46. "foreach": "^2.0.5",
  47. "indexof": "^0.0.1",
  48. "is": "^3.3.0",
  49. "nyc": "^10.3.2",
  50. "safe-publish-latest": "^1.1.4",
  51. "tape": "^5.3.0"
  52. },
  53. "testling": {
  54. "files": "test/index.js",
  55. "browsers": [
  56. "iexplore/6.0..latest",
  57. "firefox/3.0..6.0",
  58. "firefox/15.0..latest",
  59. "firefox/nightly",
  60. "chrome/4.0..10.0",
  61. "chrome/20.0..latest",
  62. "chrome/canary",
  63. "opera/10.0..latest",
  64. "opera/next",
  65. "safari/4.0..latest",
  66. "ipad/6.0..latest",
  67. "iphone/6.0..latest",
  68. "android-browser/4.2"
  69. ]
  70. },
  71. "engines": {
  72. "node": ">= 0.4"
  73. },
  74. "auto-changelog": {
  75. "output": "CHANGELOG.md",
  76. "template": "keepachangelog",
  77. "unreleased": false,
  78. "commitLimit": false,
  79. "backfillLimit": false
  80. }
  81. }