package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "define-properties",
  3. "version": "1.1.4",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.",
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepublish": "not-in-publish || npm run prepublishOnly",
  13. "prepublishOnly": "safe-publish-latest",
  14. "pretest": "npm run lint",
  15. "test": "npm run tests-only",
  16. "posttest": "aud --production",
  17. "tests-only": "nyc tape 'test/**/*.js'",
  18. "lint": "eslint --ext=js,mjs ."
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git://github.com/ljharb/define-properties.git"
  23. },
  24. "keywords": [
  25. "Object.defineProperty",
  26. "Object.defineProperties",
  27. "object",
  28. "property descriptor",
  29. "descriptor",
  30. "define",
  31. "ES5"
  32. ],
  33. "dependencies": {
  34. "has-property-descriptors": "^1.0.0",
  35. "object-keys": "^1.1.1"
  36. },
  37. "devDependencies": {
  38. "@ljharb/eslint-config": "^21.0.0",
  39. "aud": "^2.0.0",
  40. "eslint": "=8.8.0",
  41. "nyc": "^10.3.2",
  42. "safe-publish-latest": "^2.0.0",
  43. "tape": "^5.5.3"
  44. },
  45. "testling": {
  46. "files": "test/index.js",
  47. "browsers": [
  48. "iexplore/6.0..latest",
  49. "firefox/3.0..6.0",
  50. "firefox/15.0..latest",
  51. "firefox/nightly",
  52. "chrome/4.0..10.0",
  53. "chrome/20.0..latest",
  54. "chrome/canary",
  55. "opera/10.0..latest",
  56. "opera/next",
  57. "safari/4.0..latest",
  58. "ipad/6.0..latest",
  59. "iphone/6.0..latest",
  60. "android-browser/4.2"
  61. ]
  62. },
  63. "engines": {
  64. "node": ">= 0.4"
  65. }
  66. }