package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "node.extend",
  3. "version": "2.0.3",
  4. "description": "A port of jQuery.extend that actually works on node.js",
  5. "keywords": [
  6. "extend",
  7. "jQuery",
  8. "jQuery extend",
  9. "clone",
  10. "copy",
  11. "inherit"
  12. ],
  13. "author": "dreamerslab <ben@dreamerslab.com>",
  14. "dependencies": {
  15. "hasown": "^2.0.0",
  16. "is": "^3.3.0"
  17. },
  18. "devDependencies": {
  19. "@ljharb/eslint-config": "^21.1.0",
  20. "aud": "^2.0.3",
  21. "eslint": "=8.8.0",
  22. "in-publish": "^2.0.1",
  23. "is-date-object": "^1.0.5",
  24. "npmignore": "^0.3.0",
  25. "nyc": "^10.3.2",
  26. "object.assign": "^4.1.4",
  27. "safe-publish-latest": "^2.0.0",
  28. "tape": "^5.7.2"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/dreamerslab/node.extend.git"
  33. },
  34. "contributors": [
  35. {
  36. "name": "Jordan Harband",
  37. "twitter": "https://twitter.com/ljharb"
  38. }
  39. ],
  40. "main": "index",
  41. "scripts": {
  42. "prepack": "npmignore --auto --commentLines=autogenerated",
  43. "prepublishOnly": "safe-publish-latest",
  44. "prepublish": "not-in-publish || npm run prepublishOnly",
  45. "lint": "eslint --ext=js,mjs .",
  46. "pretest": "npm run lint",
  47. "tests-only": "nyc tape 'test/**/*.js'",
  48. "test": "npm run --silent tests-only",
  49. "posttest": "aud --production"
  50. },
  51. "engines": {
  52. "node": ">=0.4.0"
  53. },
  54. "testling": {
  55. "files": "test/index.js",
  56. "browsers": [
  57. "iexplore/6.0..latest",
  58. "firefox/3.0..6.0",
  59. "firefox/15.0..latest",
  60. "firefox/nightly",
  61. "chrome/4.0..10.0",
  62. "chrome/20.0..latest",
  63. "chrome/canary",
  64. "opera/10.0..latest",
  65. "opera/next",
  66. "safari/4.0..latest",
  67. "ipad/6.0..latest",
  68. "iphone/6.0..latest"
  69. ]
  70. },
  71. "license": "(MIT OR GPL-2.0)",
  72. "publishConfig": {
  73. "ignore": [
  74. ".github/workflows",
  75. "test"
  76. ]
  77. }
  78. }