MES手机端
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

99 Zeilen
2.3 KiB

  1. {
  2. "name": "object.values",
  3. "version": "1.2.0",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "ES2017 spec-compliant Object.values shim.",
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "prepublish": "not-in-publish || npm run prepublishOnly",
  14. "prepublishOnly": "safe-publish-latest",
  15. "pretest": "npm run lint",
  16. "test": "npm run tests-only",
  17. "posttest": "aud --production",
  18. "tests-only": "nyc tape 'test/**/*.js'",
  19. "lint": "eslint --ext=js,mjs .",
  20. "postlint": "es-shim-api --bound",
  21. "version": "auto-changelog && git add CHANGELOG.md",
  22. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/es-shims/Object.values.git"
  27. },
  28. "keywords": [
  29. "Object.values",
  30. "Object.keys",
  31. "Object.entries",
  32. "values",
  33. "ES7",
  34. "ES8",
  35. "ES2017",
  36. "shim",
  37. "object",
  38. "keys",
  39. "entries",
  40. "polyfill",
  41. "es-shim API"
  42. ],
  43. "dependencies": {
  44. "call-bind": "^1.0.7",
  45. "define-properties": "^1.2.1",
  46. "es-object-atoms": "^1.0.0"
  47. },
  48. "devDependencies": {
  49. "@es-shims/api": "^2.4.2",
  50. "@ljharb/eslint-config": "^21.1.0",
  51. "array.prototype.map": "^1.0.6",
  52. "aud": "^2.0.4",
  53. "auto-changelog": "^2.4.0",
  54. "eslint": "=8.8.0",
  55. "functions-have-names": "^1.2.3",
  56. "has-strict-mode": "^1.0.1",
  57. "in-publish": "^2.0.1",
  58. "npmignore": "^0.3.1",
  59. "nyc": "^10.3.2",
  60. "object-keys": "^1.1.1",
  61. "safe-publish-latest": "^2.0.0",
  62. "tape": "^5.7.5"
  63. },
  64. "testling": {
  65. "files": "test/index.js",
  66. "browsers": [
  67. "iexplore/9.0..latest",
  68. "firefox/4.0..6.0",
  69. "firefox/15.0..latest",
  70. "firefox/nightly",
  71. "chrome/4.0..10.0",
  72. "chrome/20.0..latest",
  73. "chrome/canary",
  74. "opera/11.6..latest",
  75. "opera/next",
  76. "safari/5.0..latest",
  77. "ipad/6.0..latest",
  78. "iphone/6.0..latest",
  79. "android-browser/4.2"
  80. ]
  81. },
  82. "engines": {
  83. "node": ">= 0.4"
  84. },
  85. "auto-changelog": {
  86. "output": "CHANGELOG.md",
  87. "template": "keepachangelog",
  88. "unreleased": false,
  89. "commitLimit": false,
  90. "backfillLimit": false,
  91. "hideCredit": true
  92. },
  93. "publishConfig": {
  94. "ignore": [
  95. ".github/workflows"
  96. ]
  97. }
  98. }