package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "object.values",
  3. "version": "1.1.0",
  4. "author": "Jordan Harband",
  5. "description": "ES2017 spec-compliant Object.values shim.",
  6. "license": "MIT",
  7. "main": "index.js",
  8. "scripts": {
  9. "pretest": "npm run --silent lint",
  10. "test": "npm run --silent tests-only",
  11. "posttest": "npm run audit",
  12. "tests-only": "es-shim-api && npm run --silent test:shimmed && npm run --silent test:module",
  13. "test:shimmed": "node test/shimmed.js",
  14. "test:module": "node test/index.js",
  15. "coverage": "covert test/*.js",
  16. "coverage-quiet": "covert test/*.js --quiet",
  17. "lint": "eslint .",
  18. "preaudit": "npm install --package-lock --package-lock-only",
  19. "audit": "npm audit",
  20. "postaudit": "rm package-lock.json"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/es-shims/Object.values.git"
  25. },
  26. "keywords": [
  27. "Object.values",
  28. "Object.keys",
  29. "Object.entries",
  30. "values",
  31. "ES7",
  32. "ES8",
  33. "ES2017",
  34. "shim",
  35. "object",
  36. "keys",
  37. "entries",
  38. "polyfill",
  39. "es-shim API"
  40. ],
  41. "dependencies": {
  42. "define-properties": "^1.1.3",
  43. "es-abstract": "^1.12.0",
  44. "function-bind": "^1.1.1",
  45. "has": "^1.0.3"
  46. },
  47. "devDependencies": {
  48. "@es-shims/api": "^2.1.2",
  49. "@ljharb/eslint-config": "^13.1.1",
  50. "array-map": "^0.0.0",
  51. "covert": "^1.1.1",
  52. "eslint": "^5.11.1",
  53. "object-keys": "^1.0.12",
  54. "tape": "^4.9.2"
  55. },
  56. "testling": {
  57. "files": "test/index.js",
  58. "browsers": [
  59. "iexplore/9.0..latest",
  60. "firefox/4.0..6.0",
  61. "firefox/15.0..latest",
  62. "firefox/nightly",
  63. "chrome/4.0..10.0",
  64. "chrome/20.0..latest",
  65. "chrome/canary",
  66. "opera/11.6..latest",
  67. "opera/next",
  68. "safari/5.0..latest",
  69. "ipad/6.0..latest",
  70. "iphone/6.0..latest",
  71. "android-browser/4.2"
  72. ]
  73. },
  74. "engines": {
  75. "node": ">= 0.4"
  76. }
  77. }