package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "has-property-descriptors",
  3. "version": "1.0.0",
  4. "description": "Does the environment have full property descriptor support? Handles IE 8's broken defineProperty/gOPD.",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./package.json": "./package.json"
  9. },
  10. "sideEffects": false,
  11. "scripts": {
  12. "prepublishOnly": "safe-publish-latest",
  13. "prepublish": "not-in-publish || npm run prepublishOnly",
  14. "pretest": "npm run lint",
  15. "prelint": "evalmd README.md",
  16. "lint": "eslint --ext=js,mjs .",
  17. "tests-only": "nyc tape 'test/**/*.js'",
  18. "test": "npm run tests-only",
  19. "posttest": "aud --production",
  20. "version": "auto-changelog && git add CHANGELOG.md",
  21. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/inspect-js/has-property-descriptors.git"
  26. },
  27. "keywords": [
  28. "property",
  29. "descriptors",
  30. "has",
  31. "environment",
  32. "env",
  33. "defineProperty",
  34. "getOwnPropertyDescriptor"
  35. ],
  36. "author": "Jordan Harband <ljharb@gmail.com>",
  37. "funding": {
  38. "url": "https://github.com/sponsors/ljharb"
  39. },
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/inspect-js/has-property-descriptors/issues"
  43. },
  44. "homepage": "https://github.com/inspect-js/has-property-descriptors#readme",
  45. "devDependencies": {
  46. "@ljharb/eslint-config": "^21.0.0",
  47. "aud": "^2.0.0",
  48. "auto-changelog": "^2.4.0",
  49. "eslint": "=8.8.0",
  50. "in-publish": "^2.0.1",
  51. "evalmd": "^0.0.19",
  52. "nyc": "^10.3.2",
  53. "safe-publish-latest": "^2.0.0",
  54. "tape": "^5.5.3"
  55. },
  56. "dependencies": {
  57. "get-intrinsic": "^1.1.1"
  58. },
  59. "testling": {
  60. "files": "test/index.js"
  61. },
  62. "auto-changelog": {
  63. "output": "CHANGELOG.md",
  64. "template": "keepachangelog",
  65. "unreleased": false,
  66. "commitLimit": false,
  67. "backfillLimit": false,
  68. "hideCredit": true
  69. }
  70. }