package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "es-shim-unscopables",
  3. "version": "1.0.0",
  4. "description": "Helper package to shim a method into `Array.prototype[Symbol.unscopables]`",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./package.json": "./package.json"
  9. },
  10. "scripts": {
  11. "prepublish": "not-in-publish || npm run prepublishOnly",
  12. "prepublishOnly": "safe-publish-latest",
  13. "prelint-disabled": "evalmd README.md",
  14. "lint": "eslint --ext=.js,.mjs .",
  15. "pretest": "npm run lint",
  16. "tests-only": "nyc tape 'test/**/*.js'",
  17. "test": "npm run tests-only",
  18. "posttest": "aud --production",
  19. "version": "auto-changelog && git add CHANGELOG.md",
  20. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/ljharb/es-shim-unscopables.git"
  25. },
  26. "author": "Jordan Harband <ljharb@gmail.com>",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/ljharb/es-shim-unscopables/issues"
  30. },
  31. "homepage": "https://github.com/ljharb/es-shim-unscopables#readme",
  32. "devDependencies": {
  33. "@ljharb/eslint-config": "^21.0.0",
  34. "aud": "^2.0.0",
  35. "auto-changelog": "^2.4.0",
  36. "es-value-fixtures": "^1.2.1",
  37. "eslint": "=8.8.0",
  38. "evalmd": "^0.0.19",
  39. "for-each": "^0.3.3",
  40. "in-publish": "^2.0.1",
  41. "nyc": "^10.3.2",
  42. "object-inspect": "^1.12.0",
  43. "safe-publish-latest": "^2.0.0",
  44. "tape": "^5.5.3"
  45. },
  46. "dependencies": {
  47. "has": "^1.0.3"
  48. }
  49. }