package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "is-string",
  3. "version": "1.0.6",
  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. "devDependencies": {
  37. "@ljharb/eslint-config": "^17.6.0",
  38. "aud": "^1.1.5",
  39. "auto-changelog": "^2.2.1",
  40. "core-js": "^3.12.0",
  41. "eclint": "^2.8.1",
  42. "eslint": "^7.26.0",
  43. "foreach": "^2.0.5",
  44. "indexof": "^0.0.1",
  45. "is": "^3.3.0",
  46. "nyc": "^10.3.2",
  47. "safe-publish-latest": "^1.1.4",
  48. "tape": "^5.2.2"
  49. },
  50. "testling": {
  51. "files": "test/index.js",
  52. "browsers": [
  53. "iexplore/6.0..latest",
  54. "firefox/3.0..6.0",
  55. "firefox/15.0..latest",
  56. "firefox/nightly",
  57. "chrome/4.0..10.0",
  58. "chrome/20.0..latest",
  59. "chrome/canary",
  60. "opera/10.0..latest",
  61. "opera/next",
  62. "safari/4.0..latest",
  63. "ipad/6.0..latest",
  64. "iphone/6.0..latest",
  65. "android-browser/4.2"
  66. ]
  67. },
  68. "engines": {
  69. "node": ">= 0.4"
  70. },
  71. "auto-changelog": {
  72. "output": "CHANGELOG.md",
  73. "template": "keepachangelog",
  74. "unreleased": false,
  75. "commitLimit": false,
  76. "backfillLimit": false
  77. }
  78. }