package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "function.prototype.name",
  3. "version": "1.1.5",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "An ES2015 spec-compliant `Function.prototype.name` shim",
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepublish": "not-in-publish || npm run prepublishOnly",
  13. "prepublishOnly": "safe-publish-latest",
  14. "pretest": "npm run lint",
  15. "test": "npm run --silent tests-only",
  16. "posttest": "aud --production",
  17. "tests-only": "nyc tape 'test/**/*.js'",
  18. "prelint": "npm run eccheck",
  19. "lint": "eslint .",
  20. "postlint": "es-shim-api --bound",
  21. "eccheck": "eclint check '*.js' '**/*.js'"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/es-shims/Function.prototype.name.git"
  26. },
  27. "keywords": [
  28. "Function.prototype.name",
  29. "function",
  30. "name",
  31. "ES6",
  32. "ES2015",
  33. "shim",
  34. "polyfill",
  35. "es-shim API"
  36. ],
  37. "dependencies": {
  38. "call-bind": "^1.0.2",
  39. "define-properties": "^1.1.3",
  40. "es-abstract": "^1.19.0",
  41. "functions-have-names": "^1.2.2"
  42. },
  43. "devDependencies": {
  44. "@es-shims/api": "^2.2.1",
  45. "@ljharb/eslint-config": "^18.0.0",
  46. "aud": "^1.1.5",
  47. "eclint": "^2.8.1",
  48. "eslint": "^7.32.0",
  49. "for-each": "^0.3.3",
  50. "has-strict-mode": "^1.0.1",
  51. "make-arrow-function": "^1.2.0",
  52. "make-async-function": "^1.0.0",
  53. "make-generator-function": "^2.0.0",
  54. "nyc": "^10.3.2",
  55. "safe-publish-latest": "^1.1.4",
  56. "tape": "^5.3.1",
  57. "uglify-register": "^1.0.1"
  58. },
  59. "testling": {
  60. "files": "test/index.js",
  61. "browsers": [
  62. "iexplore/9.0..latest",
  63. "firefox/4.0..6.0",
  64. "firefox/15.0..latest",
  65. "firefox/nightly",
  66. "chrome/4.0..10.0",
  67. "chrome/20.0..latest",
  68. "chrome/canary",
  69. "opera/11.6..latest",
  70. "opera/next",
  71. "safari/5.0..latest",
  72. "ipad/6.0..latest",
  73. "iphone/6.0..latest",
  74. "android-browser/4.2"
  75. ]
  76. },
  77. "engines": {
  78. "node": ">= 0.4"
  79. }
  80. }