package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "get-intrinsic",
  3. "version": "1.1.1",
  4. "description": "Get and robustly cache all JS language-level intrinsics at first require time",
  5. "main": "index.js",
  6. "exports": {
  7. ".": [
  8. {
  9. "default": "./index.js"
  10. },
  11. "./index.js"
  12. ],
  13. "./package.json": "./package.json"
  14. },
  15. "scripts": {
  16. "prelint": "evalmd README.md",
  17. "lint": "eslint --ext=.js,.mjs .",
  18. "pretest": "npm run lint",
  19. "tests-only": "nyc tape 'test/**/*.js'",
  20. "test": "npm run tests-only",
  21. "posttest": "aud --production",
  22. "version": "auto-changelog && git add CHANGELOG.md",
  23. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/ljharb/get-intrinsic.git"
  28. },
  29. "keywords": [
  30. "javascript",
  31. "ecmascript",
  32. "es",
  33. "js",
  34. "intrinsic",
  35. "getintrinsic",
  36. "es-abstract"
  37. ],
  38. "author": "Jordan Harband <ljharb@gmail.com>",
  39. "funding": {
  40. "url": "https://github.com/sponsors/ljharb"
  41. },
  42. "license": "MIT",
  43. "bugs": {
  44. "url": "https://github.com/ljharb/get-intrinsic/issues"
  45. },
  46. "homepage": "https://github.com/ljharb/get-intrinsic#readme",
  47. "devDependencies": {
  48. "@ljharb/eslint-config": "^17.5.0",
  49. "aud": "^1.1.3",
  50. "auto-changelog": "^2.2.1",
  51. "call-bind": "^1.0.2",
  52. "es-abstract": "^1.18.0-next.2",
  53. "es-value-fixtures": "^1.0.0",
  54. "eslint": "^7.19.0",
  55. "evalmd": "^0.0.19",
  56. "foreach": "^2.0.5",
  57. "has-bigints": "^1.0.1",
  58. "make-async-function": "^1.0.0",
  59. "make-async-generator-function": "^1.0.0",
  60. "make-generator-function": "^2.0.0",
  61. "nyc": "^10.3.2",
  62. "object-inspect": "^1.9.0",
  63. "tape": "^5.1.1"
  64. },
  65. "auto-changelog": {
  66. "output": "CHANGELOG.md",
  67. "template": "keepachangelog",
  68. "unreleased": false,
  69. "commitLimit": false,
  70. "backfillLimit": false,
  71. "hideCredit": true
  72. },
  73. "dependencies": {
  74. "function-bind": "^1.1.1",
  75. "has": "^1.0.3",
  76. "has-symbols": "^1.0.1"
  77. }
  78. }