package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "object.assign",
  3. "version": "4.1.4",
  4. "author": "Jordan Harband",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim",
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "pretest": "npm run lint && es-shim-api --bound",
  14. "test": "npm run tests-only && npm run test:ses",
  15. "posttest": "aud --production",
  16. "tests-only": "npm run test:implementation && npm run test:shim",
  17. "test:native": "nyc node test/native",
  18. "test:shim": "nyc node test/shimmed",
  19. "test:implementation": "nyc node test",
  20. "test:ses": "node test/ses-compat",
  21. "lint": "eslint .",
  22. "build": "mkdir -p dist && browserify browserShim.js > dist/browser.js",
  23. "prepublishOnly": "safe-publish-latest && npm run build",
  24. "prepublish": "not-in-publish || npm run prepublishOnly"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/ljharb/object.assign.git"
  29. },
  30. "keywords": [
  31. "Object.assign",
  32. "assign",
  33. "ES6",
  34. "extend",
  35. "$.extend",
  36. "jQuery",
  37. "_.extend",
  38. "Underscore",
  39. "es-shim API",
  40. "polyfill",
  41. "shim"
  42. ],
  43. "dependencies": {
  44. "call-bind": "^1.0.2",
  45. "define-properties": "^1.1.4",
  46. "has-symbols": "^1.0.3",
  47. "object-keys": "^1.1.1"
  48. },
  49. "devDependencies": {
  50. "@es-shims/api": "^2.2.3",
  51. "@ljharb/eslint-config": "^21.0.0",
  52. "aud": "^2.0.0",
  53. "browserify": "^16.5.2",
  54. "eslint": "=8.8.0",
  55. "for-each": "^0.3.3",
  56. "functions-have-names": "^1.2.3",
  57. "has": "^1.0.3",
  58. "has-strict-mode": "^1.0.1",
  59. "is": "^3.3.0",
  60. "mock-property": "^1.0.0",
  61. "npmignore": "^0.3.0",
  62. "nyc": "^10.3.2",
  63. "safe-publish-latest": "^2.0.0",
  64. "ses": "^0.11.1",
  65. "tape": "^5.5.3"
  66. },
  67. "testling": {
  68. "files": "test/index.js",
  69. "browsers": [
  70. "iexplore/6.0..latest",
  71. "firefox/3.0..6.0",
  72. "firefox/15.0..latest",
  73. "firefox/nightly",
  74. "chrome/4.0..10.0",
  75. "chrome/20.0..latest",
  76. "chrome/canary",
  77. "opera/10.0..latest",
  78. "opera/next",
  79. "safari/4.0..latest",
  80. "ipad/6.0..latest",
  81. "iphone/6.0..latest",
  82. "android-browser/4.2"
  83. ]
  84. },
  85. "engines": {
  86. "node": ">= 0.4"
  87. },
  88. "publishConfig": {
  89. "ignore": [
  90. ".github/workflows",
  91. "bower.json",
  92. "browserShim.js",
  93. "!dist/"
  94. ]
  95. }
  96. }