package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "get-intrinsic",
  3. "version": "1.1.3",
  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. "prepack": "npmignore --auto --commentLines=autogenerated",
  17. "prepublish": "not-in-publish || npm run prepublishOnly",
  18. "prepublishOnly": "safe-publish-latest",
  19. "prelint": "evalmd README.md",
  20. "lint": "eslint --ext=.js,.mjs .",
  21. "pretest": "npm run lint",
  22. "tests-only": "nyc tape 'test/**/*.js'",
  23. "test": "npm run tests-only",
  24. "posttest": "aud --production",
  25. "version": "auto-changelog && git add CHANGELOG.md",
  26. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/ljharb/get-intrinsic.git"
  31. },
  32. "keywords": [
  33. "javascript",
  34. "ecmascript",
  35. "es",
  36. "js",
  37. "intrinsic",
  38. "getintrinsic",
  39. "es-abstract"
  40. ],
  41. "author": "Jordan Harband <ljharb@gmail.com>",
  42. "funding": {
  43. "url": "https://github.com/sponsors/ljharb"
  44. },
  45. "license": "MIT",
  46. "bugs": {
  47. "url": "https://github.com/ljharb/get-intrinsic/issues"
  48. },
  49. "homepage": "https://github.com/ljharb/get-intrinsic#readme",
  50. "devDependencies": {
  51. "@ljharb/eslint-config": "^21.0.0",
  52. "aud": "^2.0.0",
  53. "auto-changelog": "^2.4.0",
  54. "call-bind": "^1.0.2",
  55. "es-abstract": "^1.20.2",
  56. "es-value-fixtures": "^1.4.2",
  57. "eslint": "=8.8.0",
  58. "evalmd": "^0.0.19",
  59. "for-each": "^0.3.3",
  60. "make-async-function": "^1.0.0",
  61. "make-async-generator-function": "^1.0.0",
  62. "make-generator-function": "^2.0.0",
  63. "mock-property": "^1.0.0",
  64. "npmignore": "^0.3.0",
  65. "nyc": "^10.3.2",
  66. "object-inspect": "^1.12.2",
  67. "safe-publish-latest": "^2.0.0",
  68. "tape": "^5.6.0"
  69. },
  70. "auto-changelog": {
  71. "output": "CHANGELOG.md",
  72. "template": "keepachangelog",
  73. "unreleased": false,
  74. "commitLimit": false,
  75. "backfillLimit": false,
  76. "hideCredit": true
  77. },
  78. "dependencies": {
  79. "function-bind": "^1.1.1",
  80. "has": "^1.0.3",
  81. "has-symbols": "^1.0.3"
  82. },
  83. "testling": {
  84. "files": "test/GetIntrinsic.js"
  85. },
  86. "publishConfig": {
  87. "ignore": [
  88. ".github/workflows"
  89. ]
  90. }
  91. }