package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. {
  2. "_from": "define-data-property@^1.1.4",
  3. "_id": "define-data-property@1.1.4",
  4. "_inBundle": false,
  5. "_integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
  6. "_location": "/define-data-property",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "define-data-property@^1.1.4",
  12. "name": "define-data-property",
  13. "escapedName": "define-data-property",
  14. "rawSpec": "^1.1.4",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.1.4"
  17. },
  18. "_requiredBy": [
  19. "/set-function-length"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
  22. "_shasum": "894dc141bb7d3060ae4366f6a0107e68fbe48c5e",
  23. "_spec": "define-data-property@^1.1.4",
  24. "_where": "/Users/ben/Desktop/app/be/be-ytb/js/node_modules/set-function-length",
  25. "author": {
  26. "name": "Jordan Harband",
  27. "email": "ljharb@gmail.com"
  28. },
  29. "auto-changelog": {
  30. "output": "CHANGELOG.md",
  31. "template": "keepachangelog",
  32. "unreleased": false,
  33. "commitLimit": false,
  34. "backfillLimit": false,
  35. "hideCredit": true
  36. },
  37. "bugs": {
  38. "url": "https://github.com/ljharb/define-data-property/issues"
  39. },
  40. "bundleDependencies": false,
  41. "dependencies": {
  42. "es-define-property": "^1.0.0",
  43. "es-errors": "^1.3.0",
  44. "gopd": "^1.0.1"
  45. },
  46. "deprecated": false,
  47. "description": "Define a data property on an object. Will fall back to assignment in an engine without descriptors.",
  48. "devDependencies": {
  49. "@ljharb/eslint-config": "^21.1.0",
  50. "@types/call-bind": "^1.0.5",
  51. "@types/define-properties": "^1.1.5",
  52. "@types/es-value-fixtures": "^1.4.4",
  53. "@types/for-each": "^0.3.3",
  54. "@types/get-intrinsic": "^1.2.2",
  55. "@types/gopd": "^1.0.3",
  56. "@types/has-property-descriptors": "^1.0.3",
  57. "@types/object-inspect": "^1.8.4",
  58. "@types/object.getownpropertydescriptors": "^2.1.4",
  59. "@types/tape": "^5.6.4",
  60. "aud": "^2.0.4",
  61. "auto-changelog": "^2.4.0",
  62. "es-value-fixtures": "^1.4.2",
  63. "eslint": "=8.8.0",
  64. "evalmd": "^0.0.19",
  65. "for-each": "^0.3.3",
  66. "hasown": "^2.0.1",
  67. "in-publish": "^2.0.1",
  68. "npmignore": "^0.3.1",
  69. "nyc": "^10.3.2",
  70. "object-inspect": "^1.13.1",
  71. "object.getownpropertydescriptors": "^2.1.7",
  72. "reflect.ownkeys": "^1.1.4",
  73. "safe-publish-latest": "^2.0.0",
  74. "tape": "^5.7.4",
  75. "typescript": "next"
  76. },
  77. "engines": {
  78. "node": ">= 0.4"
  79. },
  80. "exports": {
  81. ".": "./index.js",
  82. "./package.json": "./package.json"
  83. },
  84. "funding": {
  85. "url": "https://github.com/sponsors/ljharb"
  86. },
  87. "homepage": "https://github.com/ljharb/define-data-property#readme",
  88. "keywords": [
  89. "define",
  90. "data",
  91. "property",
  92. "object",
  93. "accessor",
  94. "javascript",
  95. "ecmascript",
  96. "enumerable",
  97. "configurable",
  98. "writable"
  99. ],
  100. "license": "MIT",
  101. "main": "index.js",
  102. "name": "define-data-property",
  103. "publishConfig": {
  104. "ignore": [
  105. ".github/workflows",
  106. "types/reflect.ownkeys"
  107. ]
  108. },
  109. "repository": {
  110. "type": "git",
  111. "url": "git+https://github.com/ljharb/define-data-property.git"
  112. },
  113. "scripts": {
  114. "lint": "eslint --ext=js,mjs .",
  115. "postlint": "npm run tsc",
  116. "posttest": "aud --production",
  117. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  118. "prelint": "evalmd README.md",
  119. "prepack": "npmignore --auto --commentLines=autogenerated",
  120. "prepublish": "not-in-publish || npm run prepublishOnly",
  121. "prepublishOnly": "safe-publish-latest",
  122. "pretest": "npm run lint",
  123. "test": "npm run tests-only",
  124. "tests-only": "nyc tape 'test/**/*.js'",
  125. "tsc": "tsc -p .",
  126. "version": "auto-changelog && git add CHANGELOG.md"
  127. },
  128. "sideEffects": false,
  129. "testling": {
  130. "files": "test/index.js"
  131. },
  132. "types": "./index.d.ts",
  133. "version": "1.1.4"
  134. }