You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "es-define-property",
  3. "version": "1.0.0",
  4. "description": "`Object.defineProperty`, but not IE 8's broken one.",
  5. "main": "index.js",
  6. "types": "./index.d.ts",
  7. "exports": {
  8. ".": "./index.js",
  9. "./package.json": "./package.json"
  10. },
  11. "sideEffects": false,
  12. "scripts": {
  13. "prepack": "npmignore --auto --commentLines=autogenerated",
  14. "prepublish": "not-in-publish || npm run prepublishOnly",
  15. "prepublishOnly": "safe-publish-latest",
  16. "prelint": "evalmd README.md",
  17. "lint": "eslint --ext=js,mjs .",
  18. "postlint": "tsc -p .",
  19. "pretest": "npm run lint",
  20. "tests-only": "nyc tape 'test/**/*.js'",
  21. "test": "npm run tests-only",
  22. "posttest": "aud --production",
  23. "version": "auto-changelog && git add CHANGELOG.md",
  24. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/ljharb/es-define-property.git"
  29. },
  30. "keywords": [
  31. "javascript",
  32. "ecmascript",
  33. "object",
  34. "define",
  35. "property",
  36. "defineProperty",
  37. "Object.defineProperty"
  38. ],
  39. "author": "Jordan Harband <ljharb@gmail.com>",
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/ljharb/es-define-property/issues"
  43. },
  44. "homepage": "https://github.com/ljharb/es-define-property#readme",
  45. "dependencies": {
  46. "get-intrinsic": "^1.2.4"
  47. },
  48. "devDependencies": {
  49. "@ljharb/eslint-config": "^21.1.0",
  50. "@types/get-intrinsic": "^1.2.2",
  51. "@types/gopd": "^1.0.3",
  52. "@types/tape": "^5.6.4",
  53. "aud": "^2.0.4",
  54. "auto-changelog": "^2.4.0",
  55. "eslint": "^8.8.0",
  56. "evalmd": "^0.0.19",
  57. "gopd": "^1.0.1",
  58. "in-publish": "^2.0.1",
  59. "npmignore": "^0.3.1",
  60. "nyc": "^10.3.2",
  61. "safe-publish-latest": "^2.0.0",
  62. "tape": "^5.7.4",
  63. "typescript": "next"
  64. },
  65. "engines": {
  66. "node": ">= 0.4"
  67. },
  68. "auto-changelog": {
  69. "output": "CHANGELOG.md",
  70. "template": "keepachangelog",
  71. "unreleased": false,
  72. "commitLimit": false,
  73. "backfillLimit": false,
  74. "hideCredit": true
  75. },
  76. "publishConfig": {
  77. "ignore": [
  78. ".github/workflows"
  79. ]
  80. }
  81. }