package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "object.getownpropertydescriptors",
  3. "version": "2.0.3",
  4. "author": "Jordan Harband",
  5. "description": "ES2017 spec-compliant shim for `Object.getOwnPropertyDescriptors` that works in ES5.",
  6. "license": "MIT",
  7. "main": "index.js",
  8. "scripts": {
  9. "pretest": "npm run --silent lint && es-shim-api",
  10. "test": "npm run --silent tests-only",
  11. "posttest": "npm run --silent security",
  12. "tests-only": "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": "npm run --silent jscs && npm run --silent eslint",
  18. "jscs": "jscs test/*.js *.js",
  19. "eslint": "eslint test/*.js *.js",
  20. "security": "nsp check"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/ljharb/object.getownpropertydescriptors.git"
  25. },
  26. "keywords": [
  27. "Object.getOwnPropertyDescriptors",
  28. "descriptor",
  29. "property descriptor",
  30. "ES8",
  31. "ES2017",
  32. "shim",
  33. "polyfill",
  34. "getOwnPropertyDescriptor",
  35. "es-shim API"
  36. ],
  37. "dependencies": {
  38. "define-properties": "^1.1.2",
  39. "es-abstract": "^1.5.1"
  40. },
  41. "devDependencies": {
  42. "tape": "^4.6.0",
  43. "covert": "^1.1.0",
  44. "jscs": "^3.0.7",
  45. "nsp": "^2.6.1",
  46. "eslint": "^3.1.1",
  47. "@ljharb/eslint-config": "^6.0.0",
  48. "semver": "^5.3.0",
  49. "replace": "^0.3.0",
  50. "@es-shims/api": "^1.2.0"
  51. },
  52. "testling": {
  53. "files": [
  54. "test/index.js",
  55. "test/shimmed.js"
  56. ],
  57. "browsers": [
  58. "iexplore/9.0..latest",
  59. "firefox/4.0..6.0",
  60. "firefox/15.0..latest",
  61. "firefox/nightly",
  62. "chrome/5.0..10.0",
  63. "chrome/20.0..latest",
  64. "chrome/canary",
  65. "opera/12.0..latest",
  66. "opera/next",
  67. "safari/5.0..latest",
  68. "ipad/6.0..latest",
  69. "iphone/6.0..latest",
  70. "android-browser/4.2"
  71. ]
  72. },
  73. "engines": {
  74. "node": ">= 0.8"
  75. }
  76. }