package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "get-intrinsic",
  3. "version": "1.0.2",
  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. },
  14. "scripts": {
  15. "lint": "eslint --ext=.js,.mjs .",
  16. "pretest": "npm run lint",
  17. "tests-only": "nyc tape 'test/*'",
  18. "test": "npm run tests-only",
  19. "posttest": "aud --production",
  20. "version": "auto-changelog && git add CHANGELOG.md",
  21. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/ljharb/get-intrinsic.git"
  26. },
  27. "keywords": [
  28. "javascript",
  29. "ecmascript",
  30. "es",
  31. "js",
  32. "intrinsic",
  33. "getintrinsic",
  34. "es-abstract"
  35. ],
  36. "author": "Jordan Harband <ljharb@gmail.com>",
  37. "funding": {
  38. "url": "https://github.com/sponsors/ljharb"
  39. },
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/ljharb/get-intrinsic/issues"
  43. },
  44. "homepage": "https://github.com/ljharb/get-intrinsic#readme",
  45. "devDependencies": {
  46. "@ljharb/eslint-config": "^17.3.0",
  47. "aud": "^1.1.3",
  48. "auto-changelog": "^2.2.1",
  49. "es-abstract": "^1.18.0-next.1",
  50. "es-value-fixtures": "^1.0.0",
  51. "eslint": "^7.15.0",
  52. "foreach": "^2.0.5",
  53. "has-bigints": "^1.0.1",
  54. "make-async-function": "^1.0.0",
  55. "make-async-generator-function": "^1.0.0",
  56. "make-generator-function": "^2.0.0",
  57. "nyc": "^10.3.2",
  58. "object-inspect": "^1.9.0",
  59. "tape": "^5.0.1"
  60. },
  61. "auto-changelog": {
  62. "output": "CHANGELOG.md",
  63. "template": "keepachangelog",
  64. "unreleased": false,
  65. "commitLimit": false,
  66. "backfillLimit": false,
  67. "hideCredit": true
  68. },
  69. "dependencies": {
  70. "function-bind": "^1.1.1",
  71. "has": "^1.0.3",
  72. "has-symbols": "^1.0.1"
  73. },
  74. "__npminstall_done": "Thu Dec 24 2020 20:20:44 GMT+0800 (CST)",
  75. "_from": "get-intrinsic@1.0.2",
  76. "_resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.0.2.tgz?cache=0&sync_timestamp=1608274300456&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fget-intrinsic%2Fdownload%2Fget-intrinsic-1.0.2.tgz"
  77. }